
function openWindow(pageName) {
  pageName = "/cgi/landing2.pl?" + pageName;
window.open(pageName,"landing","toolbar=no,width=700,height=350,directories=no,location=no,status=no,scrollbars=yes,resizable=yes,menubar=no");
}


function jumpLink(formname) {
  newLink = eval("document." + formname + ".menu.options[document." + formname + ".menu.selectedIndex].value");
//  alert("newLink:  " + newLink);
//  if (newLink != "") parent.location = newLink;
//  else document." + formname + ".menu.selectedIndex = 0;
	
  if (formname == "form1") {
	if (document.form1.menu.selectedIndex == 4 || (document.form1.menu.selectedIndex >= 11 && document.form1.menu.selectedIndex <= 13)) {
		if (document.form1.menu.selectedIndex == 4) window.open(newLink,'Specials');
		if (document.form1.menu.selectedIndex == 11) window.open('/suggestions/','suggestions','toolbar=no,width=352,height=380,directories=no,location=no,status=no,scrollbars=yes,resize=no,menubar=no');
		if (document.form1.menu.selectedIndex == 12) window.open('/tahiticontact.html','contact','toolbar=no,width=346,height=450,directories=no,location=no,status=no,scrollbars=no,resize=no,menubar=no');
		if (document.form1.menu.selectedIndex == 13) window.open('/tahitiselect.html','select','toolbar=no,width=350,height=380,directories=no,location=no,status=no,scrollbars=yes,resize=no,menubar=no');
	}

	else {
		if (newLink != "") parent.location = newLink;
		else { document.form1.menu.selectedIndex = 0; }
	}
  }

  if (formname == "form2") {

  }
}


function message(txt) { window.status = txt; }
function remove_message() { window.status = ""; }
