// JScript source code
<!--
var obj = document.forms;
	
function ProcessData(){
	var x;
	with(obj.Intro){
		for(x=0; x<obj.Intro.length;x++){
			if(obj.Intro[x].value.length == 0){
				if(obj.Intro[x].type != 'hidden' && obj.Intro[x].name != 'realname' && obj.Intro[x].name != 'Middle_Initial' && obj.Intro[x].name != 'email' && obj.Intro[x].name != 'Phone' && obj.Intro[x].disabled != true){
					alert("Please complete the required information.");
					obj.Intro[x].focus();
					return false;
				}
			}
		}
	
	}
	return true;
}
	
FileName =location.pathname;

//-->