<!--
    function validateinput(frm) { 

	var email, attr_265889, attr_265890, attr_265895,  attr_265897, attr_265898;
	
	email = trim(frm.email.value);
	if (email == "") {
		alert("Subscription Email Address is Required");
		return false;
	}
	
	attr_265889 = trim(frm.attr_265889.value);
	if (attr_265889 == "") {
		alert("First Name is Required");
		return false;
	}
	
	attr_265890 = trim(frm.attr_265890.value);
	if (attr_265890 == "") {
		alert("Last Name is Required");
		return false;
	} 
	
	attr_265895 = trim(frm.attr_265895[frm.attr_265895.selectedIndex].value);
	if (attr_265895 == "") {
		alert("College is required");
		return false;
	}
	
	attr_265897 = trim(frm.attr_265897[frm.attr_265897.selectedIndex].value);
	if (attr_265897 == "") {
		alert("Major is required");
		return false;
	}
	
	attr_265898 = trim(frm.attr_265898[frm.attr_265898.selectedIndex].value);
	if (attr_265898 == "") {
		alert("Anticipated graduation date is required");
		return false;
	}
	
	return true;
		  
}

function trim(source) { 
	
	var result;

	result = leftTrim(source);
	return rightTrim(result);

}

function leftTrim(source) { 

	
	var result; 
	var i;

	if (source == null) return "";
	text = source;

	if (text.length == 0) return "";

	result = "";
	for (i = 0; i < text.length && text.charAt(i) == " " ; i++);
	if (i == text.length) return "";
	return text.substring(i, text.length);
}

function rightTrim(source) { 
	
	var result; 
	var i;

	if (source == null) return "";
	text = source;

	if (text.length == 0) return "";

	result = "";
	for (i = text.length - 1; i >= 0 && text.charAt(i) == " " ; i -= 1);
	if (i < 0) return "";
	return text.substring(0, i + 1);
}
//-->
