function ProcessOneClick(msg, id)
{
   //handles one click
      
   return;
}


function setFocus() {
//Name:     setFocus
//Purpose:  set focus to field
//Returns:  does not return anything
   if (document.login.elements["unm"].value != "" ) {
      document.login.elements["password"].focus();
   }
   else {
      document.login.elements["unm"].focus();
   }
}


function breakOutOfPopupIfNecessary(message)
{
	try
	{
		if (self != parent)
		{
			parent.window.location.href = self.window.location.href;
		}
		else if((parent.window.name=="SendEmail") || (parent.window.name=="ScheduleAppointment") || (parent.window.name=="AddContact"))
		{
			var apptWindow = window.open("", "",'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=0,height=0');
			apptWindow.document.location="/login_bluetie.asp?msg=" + escape(message);
			parent.window.close();
		}
	}
	catch(x)
	{
	}
}
