
function showPopup(url,popupwidth,popupheight) 
{ 
	var schoolInfo = null;
	var params = "'location=0,status=0,scrollbars=0,width=" + popupwidth + ",height=" + popupheight + "'"; 
	window.open(url,"CustomSelect",params);
}

function update(schoolInfo)
{
	if (schoolInfo != null)
	{
		// Displayed textboxes
		document.getElementById('ctl00_PlaceHolderMain_txtHighSchoolCode').value = schoolInfo[0];
		document.getElementById('ctl00_PlaceHolderMain_txtHighSchoolName').value = schoolInfo[1];
		document.getElementById('ctl00_PlaceHolderMain_txtHighSchoolAddress').value = schoolInfo[2];
		document.getElementById('ctl00_PlaceHolderMain_txtHighSchoolCity').value = schoolInfo[3];
		document.getElementById('ctl00_PlaceHolderMain_txtHighSchoolState').value = schoolInfo[4];
		document.getElementById('ctl00_PlaceHolderMain_txtHighSchoolZip').value = schoolInfo[5];
				
		// Hidden html fields
		document.getElementById('ctl00_PlaceHolderMain_hidHighSchoolCode').value = schoolInfo[0];
		document.getElementById('ctl00_PlaceHolderMain_hidHighSchoolName').value = schoolInfo[1];
		document.getElementById('ctl00_PlaceHolderMain_hidHighSchoolAddress').value = schoolInfo[2];
		document.getElementById('ctl00_PlaceHolderMain_hidHighSchoolCity').value = schoolInfo[3];
		document.getElementById('ctl00_PlaceHolderMain_hidHighSchoolState').value = schoolInfo[4];
		document.getElementById('ctl00_PlaceHolderMain_hidHighSchoolZip').value = schoolInfo[5];

	}
}