<!--
// Pop-Up/Jump Menu code - D2 Tools for Microsoft FrontPage - www.d2stuff.com - Copyright (c) 2002-2004 Office Power!
function D2_doPopUp(url, name, width, height, sbars, menu, tbar, abar, status, size, pos) {//v5.2.2
 var opop; var wleft; var wtop; var props = "width=" + width + ",height=" + height + ",scrollbars=" + sbars + ",menubar=" + menu + ",toolbar=" + tbar + ",location=" + abar + ",status=" + status + ",resizable=" + size;
 switch (pos) { case "center": wleft = (screen.width/2) - (width/2); wtop = (screen.height/2) - (height/2);	props = props + ",left=" + wleft + ",top=" + wtop; break;
 case "topleft": props = props + ",left=0,top=0"; break; case "topright": wleft = (screen.width) - (width ); props = props + ",left=" + (wleft-12) + ",top=0"; break;
 case "bottomleft":	wtop = (screen.height) - (height); props = props + ",left=0,top=0" + wtop; break; case "bottomright": wleft = (screen.width) - (width); wtop = (screen.height) - (height); props = props + ",left=" + (wleft-12) + ",top=" + wtop; break;
 default: break; } opop = window.open(url,name,props);
}
function D2_doJump2(frm,win,wnm,first) {//v5.2.2
 var iIndex = frm.elements[0].selectedIndex; if (first) frm.elements[0].selectedIndex=0;
 if (iIndex == 0) return; if (win == true) { window.open(frm.elements[0].options[iIndex].value,wnm); } else {
 window.location.href = frm.elements[0].options[iIndex].value,wnm; }
}
function D2_doJump(frm,win,first) {//v3.0.1
 var iIndex = frm.elements[0].selectedIndex; if (first) frm.elements[0].selectedIndex=0;
 if (iIndex == 0) return; if (win == true) { window.open(frm.elements[0].options[iIndex].value,'_blank'); } else {
 window.location.href = frm.elements[0].options[iIndex].value; }
}
// -->
