function checkleftvalid()
{
	if (document.frmleftlogin.login.value.length <1 )
	{
		alert(" Please Enter the Email");
		document.frmleftlogin.login.focus();
		return false;
	}
	if (document.frmleftlogin.password.value.length <1 )
	{
		alert(" Please Enter the Password");
		document.frmleftlogin.password.focus();
		return false;
	}
	
	
	return true;
}