
	function gotoURL() {
		 var Current = document.problemsolver.problem.selectedIndex;
		 var url = document.problemsolver.problem.options[Current].value;
		 go(url);
		 return false;
	}

	function gotoLocalURL() {
		 var Current = document.locallistings.city.selectedIndex;
		  window.location.href = document.locallistings.city.options[Current].value;
		 return false;
	}

	function go(problempop) {
		problemPop = window.open(problempop,'problempopup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=360,height=315');
	}

	function pollPop(url_in) {
		pollpopup = window.open(url_in,"pollpopup","toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=400,height=350");
		if(navigator.appVersion.substring(0,1) >= 3) {
			pollpopup.focus();
		}
	 }

	 function tellusPop(url_in) {
		tellpopup = window.open(url_in,"tellpopup","toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=450,height=450");
		if(navigator.appVersion.substring(0,1) >= 3) {
			tellpopup.focus();
		}
	 }
	 
	 function open_popup(url, w, h, resize, scroll) {
	   var properties = "toolbar=0,location=0,directories=0,status=0,menubar=0,copyhistory=0,scrollbars="+ scroll +".resizeable="+ resize +",width="+ w +",height="+ h;
	 	child = window.open(url,"popup", properties);
	 	
		}
