function submitit() {
	document.login.loginname.style.backgroundColor="white";
	document.login.loginpass.style.backgroundColor="white";
	if(!document.login.loginname.value.length){
		alert("Please Provide your Username");
		document.login.loginname.style.backgroundColor='yellow';
		document.login.loginname.focus();
		return false;
	}
	if(!document.login.loginpass.value.length){
		alert("Please Provide your Password");
		document.login.loginpass.style.backgroundColor='yellow';
		document.login.loginpass.focus();
		return false;
	}
	document.login.submit();
	return true;
}

