function printIme(){
	var ime=window.open("");
	ime.document.open();
	ime.document.writeln("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
	ime.document.writeln("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
	ime.document.writeln("<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />");
	ime.document.writeln("<title>"+document.getElementById("pname").innerHTML+" - Print </title>");
	ime.document.writeln("<link href=\"css/public.css\" rel=\"stylesheet\" type=\"text/css\" />\n<style>body{background-color:#FFFFFF; margin:26px;};</style>");
	ime.document.writeln("</head>\n<body>");
	ime.document.writeln("<span style='font-size:14px;font-weight:bold'>"+document.getElementById("pname").innerHTML + "</span>\n<hr width=\"100%\" size=\"2\" noshade=\"noshade\" color=\"#CCCCCC\" />");
	ime.document.writeln(document.getElementById("procon").innerHTML);
	ime.document.writeln("<div style='display:none'>Powered by Eshion Media</div>");
	ime.document.writeln("</body>\n</html>");
	ime.document.close();
	ime.print();
}
