//if there are more forms on the site replace nr in "document.forms[nr]" with the nr. of form begin from 0
function UpdateSchool(){
	var TF = document.forms[1];
	a = window.open("http://144.41.253.154/intern/schools.nsf/(Search.Schools.GetByID)?OpenAgent&ID=" + TF.fd_SchoolID.value + "");
//	location.replace("(Search.Schools.GetByID)?OpenAgent&ID=" + TF.fd_SchoolID.value);
}

// Search on Return!!!
function dokey(e)
{
	var TF = document.forms[1];
	if(window.Event)
		var key=e.which;
	else{
		var key=event.keyCode;
		if(key==13){
		}
	}
}