
function printPage(title,printWin)
{ 
	var w = 700;
  	var h = 500;
    var t = parseInt("" + (screen.height-h)/2);
    var l = parseInt("" + (screen.width-w)/2);	
  	var disp_setting="fullscreen=no, toolbar=no, status=no, menubar=no, scrollbars=yes, resizable=no, directories=no, location=no, width="+w+", height="+h+", left="+l+", top="+t+""; 
  	var content_vlue = document.getElementById(printWin).innerHTML; 
  	var printDoc=window.open("","MyPrint",disp_setting); 
  
   printDoc.document.open(); 
   printDoc.document.write('<html><head><title>Achillion -- '+title+'</title>'); 
   printDoc.document.write('<link rel="stylesheet" type="text/css" href="PL/includes/achPrintStyle.css"></head><body>');
   printDoc.document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0" id="tblPrint"><tr><td class="logoBG"><img src="PL/images/achLogoPrint.gif" /></td></tr></table><hr class="hrLine">');
   printDoc.document.write(content_vlue); 
   printDoc.document.write('<br><hr class="hrLine">&copy; Copyright @ Achillion Pharmaceuticals, Inc. All rights reserved. <a href="#" onclick="window.print()"><img src="PL/images/printButn.gif" class="noprint" align="right" border="0"></a><br><br>');
   printDoc.document.write('</body></html>'); 
   printDoc.focus(); 
   printDoc.document.close();
   printDoc.window.print();
}
