function login_hlp(g_email, p_email)
{		
	if(document.logIn)
	{
		var email = g_email;
		if(email!= "")
		{
			document.logIn.email.value = email;	
			document.logIn.password.focus();
		}
		else if((email = p_email) != "")
		{
			document.logIn.email.value = email;	
			document.logIn.password.focus();
		}
		else
		{
			document.logIn.email.focus();
		}
	}
}