<!--
function Validate() 	{  

	if (document.Login.Username.value.length > 0) {
		document.Login.submit();
	} 
	else {
		alert("Invalid Username");
		document.Login.Username.focus();
	}
		
	return true;   
}

function checkSubmit(e) {

	if (!e) { e = window.event }

	if	(e.keyCode == 13) {
		// Enter key is pressed
		Validate()
	} else {
		// Other than  enter key pressed
		e.cancelBubble = true;
	}
}
//-->

