//<!--

// Jump Menu



function jumpMenu(targ,selObj,restore){

  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");

  if (restore) selObj.selectedIndex=0;

}



//PopUp Window


var newWindow;
function openWindow(url) {
	if(!newWindow || newWindow.closed)
	{
		newWindow = window.open(url,"newWindow",'titlebar,menubar,scrollbars,resizable,width=700,height=550,left=20,top=20');
		newWindow.focus();
	}
	else
	{
		newWindow.close();
		newWindow = window.open(url,"newWindow",'titlebar,menubar,scrollbars,resizable,width=700,height=550,left=20,top=20');
		newWindow.focus();
	}
}



//Footer PopUp Window

function openBrWindow(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}

// -->