function MM_jumpMenu(targ,selObj,restore)
{ //v3.0
	stURL = selObj.options[selObj.selectedIndex].value;
	if (stURL.indexOf(".pdf")>0) {
		window.open(selObj.options[selObj.selectedIndex].value);
		//if (restore) selObj.selectedIndex=0;
	} else {
		eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
		if (restore) selObj.selectedIndex=0;
	}
	
}
function popup(url, width, height)
{
	void(window.open(url,"","width="+width+" height="+height+" noresizable"))
}