function leapto(form){
var myindex=form.news.selectedIndex
window.location=(form.news.options[myindex].value)
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openprint(doc) {
	var url = url + "?url=" + document.location
	var doc = url
	var NS = (document.layers) ? true : false;
	var IE = (document.all) ? true : false;

	if(NS) {
		window.open(doc,"","scrollbars=yes,menubar=no,personalbar=no,width=500,height=400,screenX=250,screenY=0");
	} else if(IE) {
	window.open(doc,"","scrollbars=yes,menubar=no,personalbar=no,width=500,height=400,left=250,top=0");
	}
}

function openform(url) {
	var url = url + "?url=" + document.location
	var doc = url
	var NS = (document.layers) ? true : false;
	var IE = (document.all) ? true : false;

	if(NS) {
	window.open(doc,"","scrollbars=yes,menubar=no,personalbar=no,width=500,height=400,screenX=350,screenY=0");
	} else if(IE) {
	window.open(doc,"","scrollbars=yes,menubar=no,personalbar=no,width=500,height=400,left=350,top=0");
	}
}


function formHandler(){ 
var URL = document.menutop.sitetop.options[document.menutop.sitetop.selectedIndex].value; 
window.location.href = URL;
}