/* Functions that handle popups. */
function popwin(page) {
	windowprops = "width=500,height=500,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes";
	thewin = window.open(page, "popup", windowprops); thewin.focus(); 
}

function popwin2(page) {
	windowprops = "width=270,height=270,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes";
	thewin = window.open(page, "popup2", windowprops); thewin.focus(); 
}

function popwin3(page) {
	windowprops = "width=600,height=470,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes";
	thewin = window.open(page, "popup3", windowprops); thewin.focus(); 
}