function messageBox(MessageText)
{
 Message=window.open("", "Message", "toolbar=no, resizable=no, scrollbars=no, width=280, height=140");
 Message.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=WINDOWS-1251" /><title>Системное сообщение</title><link rel="stylesheet" href="/stylePopUp.css" type="text/css"></head>');
 Message.document.write('<body bgcolor="#FFFFFF"><table style="width: 100%; height: 100%;"><tr><td style="width: 100%; height: 100%; vertical-align: middle;"><p style="text-align: center;">' + MessageText + '<br /><br /><a href="" onClick="window.close(); return false;">Закрыть окно</a></p></td></tr></table><script language="JavaScript">var TimerRunning=true; TimeID=setTimeout("window.close()", 5000);</script></body></html>');
 Message.focus();
}


function textBox(TextURL)
{
 Message=window.open(TextURL, "Message", "toolbar=no, resizable=yes, scrollbars=yes, width=480, height=360");
 Message.focus();
}
