
var objNewWindow
function fnDisplayHorz(url)
{
	// Is Window Already Open?
	if(objNewWindow !=null && objNewWindow.open)
	{
		objNewWindow.close();
	}
	// Settings for New Window
	objNewWindow = window.open(url, "Popup", "width=605,height=454,titlebar=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,toolbar=no,directories=no,resizable=yes,screenX=150,screenY=50");
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

