function showSchoolSearchScreen(URLToken)
{
    var strURL = "index.cfm?fuseaction=reg.search&action=new" ;
	
	// Display the search window
	top.newSchoolWin = window.open(strURL, "searchSchoolWin", "width=600,height=500,screenX=200,screenY=300,titlebar=yes,scrollbars=yes");
	top.newSchoolWin.focus();
}


// Set field value to the selected row and close the search window
function returnSchoolValue(inID,inName)
{
	document.forgotUN.school_name.value = inName;
	document.forgotUN.school_id.value = inID;
	// Close the search window
	top.newSchoolWin.close()
}

function dn() {
	return;
}