// JavaScript Code created by:
// Menu Master JavaScript Coder
// written by:
// Pat Friedl of Nebulus Designs
// http://nebulus.org
// This script is (C) 2000
// ALL rights reserved
// and may not be re-distributed without permission
// for questions, email pfriedl@nebulus.org

function goThere(selObj) {
  selVal = selObj.options[selObj.selectedIndex].value;
  if(selVal != "") {
    if(selVal.indexOf("|") != -1){
	  t = selVal.substring(selVal.indexOf("|")+1,selVal.length);
	  val = selVal.substring(0,selVal.indexOf("|"));
	  if(t == "blank"){
	    window.open(val,'menuWin');
	  } else if(t == "top"){
		window.location = val;
	  } else {
		fraTarget = eval("parent." + t + ".document");
		fraTarget.location = val;
	  }
	} else {
	  window.location = selVal;
	}
  }
}
