<!--
var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
//-->
function Go(objCombo)
{
var strUrl=objCombo.options[objCombo.selectedIndex].value;
if (strUrl.length < 2)
return false;

var arrTmp=strUrl.split("|");
window.open(arrTmp[0], (arrTmp.length == 1)?"_self":"_blank", "height=600,width=800,toolbar=1,resizable=1,location=1,menubar=1,scrollbars=1");
}
