
var prnwin;

function printnews() 
{
	var ht = 400;
	var wd = 650;

	var features = 'toolbar=0,menubar=0,resizable=0,scrollbars=1,status=1,height=' + ht + ',width=' + wd + ',top=' + (screen.availHeight/2 - ht/2) + ',left=' + (screen.availWidth/2 - wd/2);

	var tDate = new Date();		
	var curDT = tDate.toDateString() + ' ' + tDate.getHours() + ':' + tDate.getMinutes() + ':' + tDate.getSeconds();
		
	if(prnwin) if(!prnwin.closed) prnwin.close();

	prnwin = window.open("", "", features); 

	prnwin.document.open(); 
	prnwin.document.write('<html><head>');
	prnwin.document.write('<title>News & Events: Atlas Group</title>');
	prnwin.document.write('<style>BODY { margin: 20px; color:#444444; font-size:10px; font-family:tahoma; } H2 { margin:0px; margin-bottom:10px; font-size:110%; font-weight:bold; } H2 A { color:#000000; text-decoration: none; } #printheader { margin-bottom:0px } #printfooter { color:#999999; border-top: 1px solid #999999; margin-top:20px; line-height: 25px; } #title { font-size: 140%; font-weight: bold; font-family:georgia; margin-bottom: 20px; border-bottom: 1px dotted #CCCCCC; line-height: 25px; }  </style>');
	prnwin.document.write('</head><body onLoad="self.print();">');
	prnwin.document.write('<div id="printheader"><img border="0" src="./images/logobw.png"></div>'); 
	prnwin.document.write('<div id="title">News & Events</div>');
	prnwin.document.write(vNews);
	prnwin.document.write('<div id="printfooter">printed from <b>www.atlasgroup.in</b> on ' + curDT + ' | <b>Atlas Group, Ahmedabad</b></div>'); 
	prnwin.document.write('</body></html>'); 
	prnwin.document.close(); 
	prnwin.focus(); 
}