// *** Pop-Up Messages
function startPop(goWhere, varWidth, varHeight) {
  var newWin;
  newWin = window.open(goWhere,"popup","toolbar=no,width=" + varWidth + ",height=" + varHeight + ",resizable=1,scrollbars=0");
  newWin.focus();
}

function startPop2(goWhere, varWidth, varHeight) {
  var newWin;
  newWin = window.open(goWhere,"popup","toolbar=no,width=" + varWidth + ",height=" + varHeight + ",resizable=1,scrollbars=1");
  newWin.focus();
}

function SelectIt(){
        if (document.Links.Select.options[document.Links.Select.selectedIndex].value != "none"){ 
        location = document.Links.Select.options[document.Links.Select.selectedIndex].value}        
}
