// open popup windowfunction popupPage(passedurl) {	var thepage = passedurl;	windowprops = "scrollbars=yes,toolbar=no,height=400,width=550";	thewindow=window.open(thepage,"",windowprops);}function popupPageBig(passedurl) {	var thepage = passedurl;	windowprops = "scrollbars=yes,toolbar=no,height=500,width=750";	thewindow=window.open(thepage,"",windowprops);}