function loginCheck()
{
  //document.login.target='_blank';
  if (document.login['LoginName'].value=='' || document.login['LoginPin'].value=='')
    {alert("You need to add your username and password to log in."); return false;}
  else
    {return true;}
};

function popUp(url)
{
	sealWin=window.open(url,"win",'toolbar=0,location=0, directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
	self.name = "mainWin";
}

