function validateForm()
{
	if ( document.theForm.usrLogin.value == '' )
	{
		alert('Username is required.');
		document.theForm.usrLogin.focus();
		return false;
	}
	if ( document.theForm.usrPassword.value == '' )
	{
		alert('Password is required.');
		document.theForm.usrPassword.focus();
		return false;
	}
	return true;
}
	
// Password Popup Window

function openPassword(theURL,winName,features) 
	
	{ 
	
	shopwindow = window.open(theURL,winName,'menubar=0,scrollbars=0,resizable=0,height=250,width=508,left=40,top=40');
	shopwindow.focus();
	
	}
