/* DROPDOWN GENERAL FUNCTION */

function adp_url(object) {
    window.location.href = object.options[object.selectedIndex].value;
}

/* DROPDOWN TARGET TO BLANK */

function adp_blank(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}

/* DROPDOWN TARGET TO POPUP */

var win = null;
function adp_popup(mypage,myname,w,h,scroll,status){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
// TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
// for vert. centering change value top back to +TopPosition+
settings =
'height='+h+',width='+w+',top='+20+',left='+LeftPosition+',scrollbars='+scroll+',status='+status+''
win = window.open(mypage,myname,settings)
}

/* VOID */

function adp_void() {
}
