function validate1(){

	if(document.applylogin.username.value=='')

		{

			alert('Please Enter valid username For login!!');

			document.applylogin.username.focus();

			//document.getElementById('sname').style.backgroundColor = '#9DACBF';

			return false;

			//}else{document.getElementById('sname').style.backgroundColor = '#ffffff';

		}

	

	if(document.applylogin.password.value=='')

		{

			alert('Please Enter valid password for login!!');

			document.applylogin.password.focus();

			//document.getElementById('sname').style.backgroundColor = '#9DACBF';

			return false;

			//}else{document.getElementById('sname').style.backgroundColor = '#ffffff';

		}



    return true;



}

	

