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