	function CheckLogIn(){
		UserName = document.LogInForm.UserName.value
		UserPass = document.LogInForm.UserPass.value
	
		if (UserName=="" || UserPass=="")
		{
			alert ("Please fill username and password")
			return false
		}
	}
	function OpenPassWin(){
		PassWin=window.open ("./sendPass.asp", 'PassWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=350,height=150')}
