// JavaScript Document


function loginCheckAndSubmit()
{
	if( document.postFormLogin.user_name.value.length < 1 )
	{ 
		alert('Please Enter User Name!\r\n\r\n敬告：请填写用户名!') ;
		document.postFormLogin.user_name.focus() ;
		return false ;
	}
	if( document.postFormLogin.password.value.length < 1 )
	{ 
		alert('Please Enter Password!\r\n\r\n敬告：请填写密码!') ;
		document.postFormLogin.password.focus() ;
		return false ;
	}
	document.postFormLogin.submit() ;
}
