function passwordpop_up() {
  win = window.open("search_password1.htm", "WIN", "status=no,toolbar=no,location=no,menu=no,scrollbars=no,screenX=0,screenY=0,width=402,height=395");
}
function checkPage()
{
	try
	{
		if (document.all('Username').value != "" )
		{
			try{document.all('Password').focus()}catch(e){};
		}
		else
		{
			try{document.all('Username').focus()}catch(e){};
		}
	}
	catch(e){}
}