function open_window(title, width, height, content) 
		{ 
			ScrWindow=window.open("","","toolbar=no,location=no,left=0,top=0,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width="+width+",height="+height+""); 
			if (ScrWindow != null && ScrWindow.opener == null) ScrWindow.opener=window; 
			ScrWindow.document.open(); 
			ScrWindow.document.writeln ("<html><link href='\/themes\/iadmin\/css\/contentext.css' rel='stylesheet' type='text\/css' /><head><title>"+title+"</title></head><body><div class='none'><a href='#' onclick=\"window.print(); return false;\"   style='display:block; border-radius:5px; border:1px solid #bababa; width:100px;text-align:center; text-decoration:none; color:#666666;'>печать</a></div><div class='contentext'>"+content+"</div></body></html>"); 
			
			ScrWindow.document.close(); 
		}
