ns4 = (document.layers);
ie4 = (document.all);			
function OpenPrintWindow(sUrl, iWidth, iHeight)
{		
	if(ns4) {
		stringie="height="+ iHeight +",width="+ iWidth +",toolbar=yes,scrollbars=yes,directories=no,menubar=no,location=no,resizable=yes,personalbar=no,screenX=50,screenY=50";
		newWindow = open(sUrl,"window", stringie);
	}
	else {
		stringie="height="+ iHeight +",width="+ iWidth +",toolbar=yes,scrollbars=yes,directories=no,menubar=no,location=no,resizable=yes,personalbar=no,statusbar=0,left=50,top=50";
		newWindow = window.open(sUrl,"window", stringie);
	}
	return; 
}