<!--

function oldGetYacht(iDept){
  var yachtform = document.yachtform;
  var yachtid   = yachtform.shipid.options[yachtform.shipid.selectedIndex].value;
  if(yachtid==""){
    return;
  }
  var nexturl   = "/"+iDept+"/yachtsearch.php?charter=1&shipid="+yachtid;
  document.location.href = nexturl;
}


function GetYacht(){
  var yachtform = document.yachtform;
  var yachtid   = yachtform.shipid.options[yachtform.shipid.selectedIndex].value;
  if(yachtid==""){
    return;
  }
  var nexturl   = "/yachtsearch.php?charter=1&shipid="+yachtid;
  var contentsWindow;
  contentsWindow = window.open(nexturl,"contents");

}

//-->