/* 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=450,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes";	thewin = window.open(page, "popup3", windowprops); thewin.focus(); }function popwinBenefits(page) {	windowprops = "width=425,height=600,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes";	thewin = window.open(page, "popupBenefits", windowprops);	thewin.focus();}