<!--

function guideFormURL(){
  var URL = document.guideForm.guide.options[document.guideForm.guide.selectedIndex].value;
  if (URL != "") {
    window.location.href = URL;
  }
}

function faqFormURL(){
  var URL = document.faqForm.faq.options[document.faqForm.faq.selectedIndex].value;
  if (URL != "") {
    window.location.href = URL;
  }
}

function openWin(obj) {
	newwin  =	window.open(obj,"SFXmenu", "toolbar=yes,location=yes,directories=yes,buttons=yes," +
				"status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=480,height=480");
	if (navigator.appName.indexOf("xplorer") < 0) {
		newwin.focus();
	}
}

// -->