<!--
	//new window function
	
		function newWindow(url, height, width) {
			if (url == null && height == null && width==null){
				 nameW='QUALWEB';
				 url = "http://qualweb.opengroup.org";
				 width="600";
				 height="400";
	
			} else {
				nameW='';
			}
	
		 var myWin = "";
		 if (navigator.appVersion.indexOf('4') != -1) {
			// Vars for centering the new window on Version 4 Browsers
			xTop = screen.width/2 - (width/2);
			yTop = 60;
			// yTop = (screen.height - height)/2;
			// alert(screen.height);
			myWin = window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=1,menubar=0,toolbar=1,status=1,location=1,directories=0,left=' + xTop + ',top=' + yTop + '');
	
		 } else {
			myWin = window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=1,menubar=0,toolbar=1,status=1,location=1,directories=0,left=150,top=200');
		 }
		 myWin.focus();
		};
	//-->