function OpenPrintWindow(sPage)  {
  rChildWindow = window.open(sPage,"Window","top=1px,left=1px,width=640px,height=400px,toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
}

function openPDF(what,desc) {
	PDFstr = "window.open('','PDF','width=" + w_x + ",height=" + w_y +",scrollbars=yes,resizable=yes,top=0,left=0,screenX=20,screenY=20')";
	PDF = eval(PDFstr);
	PDF.document.location.replace(what);
	PDF.focus();
}
