// SEARCH VALIDATION
function s_validate(formObject){
	if(formObject.elements['keywords'].value == '' || formObject.elements['keywords'].value == 'Search'){
		alert('Please enter a query before submtting.');
		return false;
	} else {return true;}
	}

// SEARCH CLEAR
function clear_search(s) {if (s.defaultValue==s.value || s.value=='SEARCH') s.value = ""}
function reinit_search(s) {if (s.value=='') s.value = "Search"}
function openEd2Go() {
		var ed2go = confirm("You have chosen a class offered through ed2go, our online training partner.  Click OK to access detailed information about your online courses, as well as enrollment/registration information")
		if(ed2go)
		location.href="Ed2Go.asp"
	}
	
function open_window(url) {
mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width=535,height=400');
}

