function printMe(divId) {
	w=window.open('','newwin');
   	w.document.write('<head><link href="style.css" type="text/css" rel="stylesheet"></head>');
   	w.document.write('<body onLoad="window.print()">'+ "<h2><i>arul's tech site</i></h2>" + document.getElementById(divId).innerHTML);
   	w.document.write('<div style="CLEAR: left; PADDING: 3px; BORDER-left:#ccc 1px solid; background-color: #ffffff; FONT-FAMILY: verdana, sans-serif; font-size: 10px; TEXT-ALIGN: left">Copyright &copy; 2001-2004 Arul John. Alle Rechte vorbehalten.<br>Web site by <A HREF="http://www.cis.ksu.edu/~aruljohn/"><IMG SRC="../images/icon_aruljohn.gif" ALT="arul john" BORDER="0" WIDTH="75" HEIGHT="20" ALIGN="absmiddle"></A></div>');
   	w.document.write('</body>');
   	w.document.close();
   	return false;
}
