	function openTextWin(text,image_width,image_height) {
		myImageWin= window.open("", "displayWindow","width="+image_width+",height="+image_height+",top=300,left=500,status=no,toolbar=no,menubar=no");
		myImageWin.document.open();
		myImageWin.document.write("<head><title>Ив-Транском</title><meta http-equiv='Content-Type' content='text/html; charset=UTF-8' /><link href='/design/site/css/style.css' type='text/css' rel='stylesheet' /></head><body style='margin:10px; background:#fff;'>"+text+"</body>");
		myImageWin.document.close();
	}