﻿function Clickheretoprint(){   var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,";       disp_setting+="scrollbars=yes,width=650, height=600, left=100, top=25";   var content_vlue = document.getElementById("prArea").innerHTML;     var docprint=window.open("","",disp_setting);    docprint.document.open();    docprint.document.write('<html><head><title>MSA</title><link href="../css/print.css" rel="stylesheet" type="text/css" media="all" /></head><body onLoad="self.print()"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="160"><img src="../images/MSA.gif" height="62" width="160" border="0" /></td><td width="20"><img src="../images/spacer.gif" height="1" width="20" border="0"></td><td>');            docprint.document.write(content_vlue);        docprint.document.write('</td></tr></table></body></html>');    docprint.document.close();    docprint.focus(); }