function OpenWindow(url,x,y) {
    		var options = "location=no,toolbar=no,scrollbars=no,resizable=yes,width=" + x + ",height=" + y; msgWindow=window.open(url,"OpenWindow",options);
		}

		
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}