///////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Page Name : common.js
// Page Desc : all common validation related js code is written here
// Created By : Surendra Singh
// Date of Creation : 23.01.09
// Modified By : 
// Modification Date : 
///////////////////////////////////////////////////////////////////////////////////////////////////////////////

function onloadselect()
{
	document.getElementById("usercode").focus();
}
function validate_login()
{
	if(document.getElementById("usercode").value == "")
	{
		alert("User Code Can Not be Blank");
		document.getElementById("usercode").focus();
		return false;
	}
	if(document.getElementById("password").value == "")
	{
		alert("User Code Can Not be Blank");
		document.getElementById("password").focus();
		return false;
	}
	if(document.getElementById("login_type").value == "")
	{
		alert("First select login type");
		document.getElementById("login_type").focus();
		return false;
	}
	
}
