var prnwin = null;

function printme() 
{
	var ht = 500;
	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 content = document.getElementById("content").innerHTML; 

	var title = document.title;

	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('<link rel="stylesheet" type="text/css" href="./styles/print.css">'); 
	prnwin.document.write('<title>' + title + '</title>');
	prnwin.document.write('</head><body onLoad="self.print();">');
	prnwin.document.write('<div id="logo"><img border="0" src="./images/takeoff_logo_bw.png" /></div>');          
	prnwin.document.write('<div id="content">' + content + '</div>');          
	prnwin.document.write('<div id="bottom">printed from <b>www.takeoffeducation.com</b> on ' + curDT + '<br/>Take Off Educational Consultants - 703, "Rembrandt", Above Citi Bank, C. G. Road, Ahmedabad - 380006 (Gujarat - INDIA)</div>'); 
	prnwin.document.write('</body></html>'); 
	prnwin.document.close(); 
	prnwin.focus(); 
}