function idgNetworkJump(pdmenu,target)
{
var selectedIndex = pdmenu.selectedIndex;
if ((selectedIndex > 0) && (pdmenu.options[selectedIndex].value != "_")) {
var selection = pdmenu.options[selectedIndex].value;
if (target == "self") self.parent.parent.location = selection;
else window.open(selection);
}
}
document.write('');
document.write('');