function GoUrl(s) {       
	var d = s.options[s.selectedIndex].value;
        window.self.location.href = d;
        s.selectedIndex=0
}
function openWindow(page) {
	window.open(page,"window","height=450,width=600,status=yes,scrollbars=no,resizeable=no,toolbar=no");
}
function openPopUp( URLString, Height, Width ) {
	//alert(Height+"test");
	window.open("popup.php"+URLString,"window","height="+Height+",width="+Width+",status=yes,scrollbars=no,resizeable=no,toolbar=no");
}
// function used for wetter.com maps and stats
// function is called by openBrWindow('test.html','NewWindow','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=100,height=100')
function openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}