function print(currentElement) {
	
	var tagName = document.getElementById(currentElement).innerHTML;
	
	
	outputWindow=window.open();
	outputWindow.document.open("text/html", "replace");
    outputWindow.document.write("<HTML><HEAD><TITLE>PRINT</TITLE>");
    outputWindow.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />");
    outputWindow.document.write("</HEAD><BODY>\n");
    outputWindow.document.write("<table width='700' border='0'><tr><td>");
    outputWindow.document.write("<tr><td><img src='http://www.etnoarbata.lt/themes/user/lt_svf_www/images/logotype.jpg' alt='SVF' /></td></tr><tr><td><hr /></td></tr>");
    outputWindow.document.write("<tr><td>");
    outputWindow.document.write(tagName);
    outputWindow.document.write("</tr></td></table>");
    outputWindow.document.write("</BODY></HTML>\n");
	outputWindow.document.close();
}