login_check= function()
{
	
	$("#error_for_login_check11").html("");
	$("#error_for_login_check11").show();
	
	if($("#bottom_login_uname").val()=="")
	{
		
		$('#error_for_login_check11').html("Please enter your username.");
		$("#error_for_login_check11").fadeOut(8000);
		
		
	}else if($("#bottom_login_password").val()=="")
	{
		$('#error_for_login_check11').html("Please enter password.");
		$("#error_for_login_check11").fadeOut(8000);
	}else
	{
		document.form1_login.submit();
	}
	
	 
}
