/* author: EuKoch */
/* Creation date: 09.10.2004 */
function WriteBlock(WRTitle, WRText) {
		document.write("<table border='0' cellpadding='0' cellspacing='1' bgcolor='#B5BFD9' style='margin-bottom: 10px' width='100%'>");
		document.write("<tr>");
		document.write("<td style='padding-top: 2px; padding-bottom: 2px; background: #D9DEEB; padding-left: 3px; font-family: Verdana, Tahoma, sans-serif; font-size: 10px; color: #2A55A4'><img src='/images/strela1.gif' width='5' height='9' border='0' hspace='5'><b>"+WRTitle+"</b></td>");
		document.write("</tr>");
		document.write("<tr>");
		document.write("<td style='padding: 5px; background: #FFFFFF; text-align:justify; font-size: 9px; color: #000000; font-family: Verdana, Tahoma, sans-serif'>");
		document.write(WRText);
		document.write("</td>");
		document.write("</tr>");
		document.write("</table>");
}


