
<!--
	function openWindow(loc,winWidth,winHeight) {
	  var windowW = winWidth;
	  var windowH = winHeight;
	  var windowX = Math.ceil( (window.screen.width  - windowW) / 2 );
	  var windowY = Math.ceil( (window.screen.height - windowH) / 2 );
	  var windowheight = Math.ceil(0.8*winHeight);
	  var windowwidth = Math.ceil(0.8*winWidth);

	  window.open(loc,"newWindow","left="+ windowX + ",top=" + windowY + ",width=" + windowwidth + ",height=" + windowheight + ",scrollbars=yes,resizable=yes");
	}
//-->