function gohere(form) {
//open the requested form with the same parameters as the current window.
  var myindex=form.aty.selectedIndex
  var mypage = form.aty.options[myindex].value // + window.location.search;
  //window.location.replace(mypage);
  window.location.href=mypage;
}

//Open the Help Page in a separate window
//e.g. javascript:h_window('help-e.htm', 'help_window', 'width=100,height=50')

function h_window(varurl, varname, varfeature){
	window.open(varurl, varname, varfeature);
}
