function doPrint()
{
	var startPrintMark = "<!-- STARTPAGEPRINT -->" ;
	var endPrintMark = "<!-- ENDPAGEPRINT -->" ;

	var source = document.body.innerHTML ;
	source = source.substr(source.indexOf(startPrintMark) + startPrintMark.length) ;
	source = source.substr(0, source.indexOf(endPrintMark)) ;

	var win = window.open("",'',"height=500,width=580,status=0, scrollbars=1,toolbar=0,menubar=0,location=0, resizable=1;");

	win.document.open();
	win.document.write('<html><head><title></title><LINK href="inc/Styles.css" type="text/css" rel="stylesheet"></head>');
	win.document.write('<body>') ;
        win.document.write('<table width=500 cellpadding=0 cellspacing=0 border=0>') ;
        win.document.write('<tr><td height=71><img src="images/logoPrint.gif">&nbsp;&nbsp;&nbsp;&nbsp;<img src="images/print.gif" onclick="window.print();" style="cursor:hand"><hr color=#8B8E97 width=450></td></tr>') ;
	win.document.write(source) ;
        win.document.write('</table>') ;

        win.document.write('</body></html>') ;
	win.document.close();
}
