<!-- 

function goToURL(form)
  {

    var myindex=form.dest.selectedIndex
    if(!myindex=="")
      {
        parent.location.href=form.dest.options[myindex].value;

      
      }
}
function goToSUB(form)
  {

    var myindex=form.subdest.selectedIndex
    if(!myindex=="")
      {
        parent.location.href=form.subdest.options[myindex].value;

      
      }
}

function goToNXT(form)
  {

    var myindex=form.ctypdest.selectedIndex
    if(!myindex=="")
      {
        parent.location.href=form.ctypdest.options[myindex].value;

      
      }
}

function goToMYURL(form)
  {

    var myindex=form.site.selectedIndex
    if(!myindex=="")
      {
        parent.location.href=form.site.options[myindex].value;

      
      }
}


//-->
