<!--
function OpenNewWindow(theURL,winName,settings,width,height) {
 	screenW = screen.availWidth;
   	screenH = screen.availHeight;
	var leftPos = (screenW-width)/2;
	var topPos = (screenH-height)/2;
	settings=settings+",width="+width+",height="+height+",top="+topPos+",left="+leftPos;
	winName=window.open(theURL,winName,settings);
	winName.focus();
}

if (window != window.top)
  top.location.href = location.href;

//-->