function dd_formHandler(selectform,xwidth,yheight) {
var dd_windowprops = "height="+yheight+",width="+xwidth+",top=2,left=10,location=no,scrollbars=no,menubar=no,toolbar=no,resizable=no";

var URL = selectform.options[selectform.selectedIndex].value;
var WID = selectform.options[selectform.selectedIndex].id;

if (URL != ""){
if (WID != ""){
window.document.location.href=URL;
} else {
popup = window.open(URL,"MenuPopup",dd_windowprops);
}
}
}

function dd_formHandler_photo(selectform,xwidth,yheight) {
var dd_windowprops = "height="+yheight+",width="+xwidth+",top=2,left=10,location=no,scrollbars=no,menubar=no,toolbar=no,resizable=no";

var URL = selectform.options[selectform.selectedIndex].value;
var WID = selectform.options[selectform.selectedIndex].id;

if (URL != ""){
if (WID != ""){
window.document.location.href=URL;
} else {
popup = window.open(URL,"MenuPopup",dd_windowprops);
}
}
}

function dd_formHandler2(selectform,xwidth,yheight) {
var dd_windowprops = "height="+yheight+",width="+xwidth+",top=2,left=10,location=no,scrollbars=yes,menubar=no,toolbar=no,resizable=yes";

var URL = selectform.options[selectform.selectedIndex].value;
var WID = selectform.options[selectform.selectedIndex].id;

if (URL != ""){
if (WID != ""){
window.document.location.href=URL;
} else {
popup = window.open(URL,"MenuPopup",dd_windowprops);
}
}
}

function dd_formHandlerDesk(selectform) {
var dd_windowprops = "height=184,width=140,top=50,left=50,location=no,scrollbars=no,menubar=no,toolbar=no,resizable=no";

var URL = selectform.options[selectform.selectedIndex].value;
popup = window.open(URL,"MenuPopup",dd_windowprops);
}


