function formHandler(form) {
var windowprops = "height=500,width=800,location=yes,"
+ "scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes";

var URL = form.site.options[form.site.selectedIndex].value;
popup = window.open(URL,"MenuPopup",windowprops);
}

function formHandler2(form) {
var windowprops = "height=500,width=800,location=yes,"
+ "scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes";

var URL = form.site2.options[form.site2.selectedIndex].value;
popup = window.open(URL,"MenuPopup",windowprops);
}

function formHandler3(form) {
var windowprops = "height=500,width=800,location=yes,"
+ "scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes";

var URL = form.site3.options[form.site3.selectedIndex].value;
popup = window.open(URL,"MenuPopup",windowprops);
}

function formHandler4(form) {
var windowprops = "height=500,width=800,location=yes,"
+ "scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes";

var URL = form.site4.options[form.site4.selectedIndex].value;
popup = window.open(URL,"MenuPopup",windowprops);
}

function formHandler5(form) {
var windowprops = "height=500,width=800,location=yes,"
+ "scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes";

var URL = form.site5.options[form.site5.selectedIndex].value;
popup = window.open(URL,"MenuPopup",windowprops);
}