
	function popUp (page, height, width, param) {
		window.onerror=null;
			var _loc 	= page; 
			var _params 	= param+",width="+width+",height="+height;
			var xwin 	= window.open(_loc,"POPUP",_params);
			if (xwin.opener == null) { xwin.opener = self; }
			xwin.focus();
		return false;
	}




function jumpurl(form)
{
	window.open(form.URL.options[form.URL.selectedIndex].value,'','','');
	return true;
}

