// JavaScript Document
function chk_login()
{
	username = document.getElementById('UserID').value;
	passwd   = document.getElementById('Password').value;
	if((username == '') && (passwd == '')){
		alert("Please Enter User Name and Password");
		return false;
	}
	else if((username == 'atlantic') && (passwd == 'employee')){
		//window.location = "login-information.php";
		document.form1.submit();
		return false;
	}
	else if((username != 'atlantic') && (passwd != 'employee')){
		alert("Check your User Name and password");
		document.getElementById('UserID').value = '';
		document.getElementById('Password').value= '';
		return false;
	}
}
