﻿
 function closew()
 {
great = document.getElementById('great')
 great.style.visibility = 'hidden';
 
 
 }







function okno(txt)
         {

 
 window.scrollTo(0,0);

 
 
 
 var great = document.getElementById('great');
 
 great.innerHTML="";
 
 great.style.visibility = 'visible';
 great.style.top = "200px";
 a = screen.width/2 - 200;
 great.style.left = a + "px";
 

 fs="<table border=0 width=350><tr><td width=350 height=200 bgcolor=#E1E3E4 valign=top>" +
 "<div style='padding:10px 10px 10px 10px; text-align:left'><font size=2>" + 
  
 "<table border=0 width=350><tr><td width=330></td><td width=20>" + 
 "<a href=javascript:closew()><font color=red>x</font></a></td></tr></table>" +
 
 
 "<form action=index.php?dop=error method=post><input type=hidden name=dop value=error>" +
"<input type=hidden name=txt value=\"" + txt + "\">" +
  "Ваше сообщение об ошибке" +
  
  
   "<input type=text name=text size=45> " + "<br><br>" + 
 
 "<b>Выделенный текст: </b><br>" + 
 
 txt + 
 
 
 "<br><br></font>" +
 "<input type=submit value=\"отправить сообщение\"></form>" + 
 
 "</div></td></tr></table>";
 


 great.innerHTML=fs;
 
 }














