
	function openWindowLink(url) 
	{
		//wid = document.body.clientWidth;
		//hei = document.body.clientHeight; 
		wid = screen.width;
		hei = screen.height;
		wid = wid - 10;
		hei = hei - 70;
		x=0;
		y=0;
		popupWin = window.open(url, 'openWin', 'width='+wid+', height='+hei+',screenX = '+x+', screenY = '+y+',left=' + x + ',top=' + y + ' scrollbars=yes, resizable=yes location=no,directories=no,status=no,menubar=no ,toolbar=yes'); 
		popupWin.focus();
	} 
 