function goto_URL() {
	var object;
	object=document.all("selectName");
    window.location.href = object.options[object.selectedIndex].value;
}

function EvalSound(soundobj) {
  var thissound= eval("document."+soundobj);
  thissound.Play();
}