function submitMe(frmid)
{
 document.getElementById(frmid).method = "get";
 document.getElementById(frmid).submit();
}

	function surfto(combo) {
		var myindex = combo.selectedIndex
		var location = combo.options[myindex].value
		if (location != "") {
			window.location.href = location;
		}
	}
	
	function surftofile(combo) {
		var myindex = combo.selectedIndex
		var location = combo.options[myindex].value
		if (location != "") {
			window.open(location,'pop','scrollbars=no,resizable=yes,toolbar=yes,top=20,left=20');
		}
	}
