// JavaScript Document
<!--
function Validate(){
	if(document.login_form.username.value==""){
		alert("Username is required")
		document.login_form.username.focus();return false
	}
	
	var spChar="<>=!?@#*~";
	for (var i=0; i<document.login_form.username.value.length; i++){
		if(spChar.indexOf(document.login_form.username.value.charAt(i)) !=-1){
			alert("Your username has special characters in it that are not allowed.");
			return false;
		}
	}
	
	if(document.login_form.password.value==""){
		alert("Password is required")
		document.login_form.password.focus();
		return false
	}
	
	var spChar="<>=!?@#*~";
	for (var i=0; i<document.login_form.password.value.length; i++){
		if(spChar.indexOf(document.login_form.password.value.charAt(i)) !=-1){
			alert("Your password has special characters in it that are not allowed.");
			return false;
		}
	}
}
//-->
	