// begin New window
var newWindow
function openPopupWindow(theURL,theWindow,theWidth,theHeight) {
	if (!newWindow || newWindow.closed) { // checks if window exist, if not --> create
		var w = theWidth;
		var h = theHeight;
		var x = (screen.width - w) / 2;
		var y = (screen.height - h) / 2;
		newWindow = window.open(theURL,theWindow,'top='+y+',left='+x+',width='+w+',height='+h+',resizable=yes,scrollbars=1,menubar=no,toolbar=no,directories=no,location=no,status=no');
	} else { // if print window is cretaed --> focus
			newWindow.focus();
			}
}
// end New window

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}




 
 
 