	function ValidateContractorLogin(frm){
		var msg='';

		if(frm.username.value=='' || frm.username.value=='Username'){msg+='\n  - Username';}
		if(frm.password.value==''){msg+='\n  - Password';}

		if(msg==''){
			return true;
		}else{
			alert('Please fill in the following information:\n' + msg);
			return false;
		}
	}

	function Logoff(){
		if(confirm("Are you sure you want to log out?")){
			document.location = "/contractors/logout.php";
		}
	}

	function LogoffEmp(){
		if(confirm("Are you sure you want to log out?")){
			document.location = "/employees/logout.php";
		}
	}
