function printText(elem) {
	//alert('Hiii');
			popup = window.open('','popup','scrollbars=yes,toolbar=no,menubar=no,width=650,height=700');
			popup.document.open();
			popup.document.write("<html><head><link href=\"/css/css.css\" rel=\"stylesheet\" type=\"text/css\"></head><body onload='print()'><div style='padding: 10px; background-color:white'>");
			popup.document.write(elem);
			popup.document.write("</div></body></html>");
			popup.document.close();
}
