
function okno(str,x,y)
{

  if(y < (screen.availHeight - 20) )str3="scrollbars=no,status=no,resizable=yes,width="+x+",height="+y+",left="+(screen.availWidth-x)/2+",top="+(screen.availHeight-y)/2;
  else str3="scrollbars= yes,width="+ (x + 20) +",height="+ (screen.availHeight - 50)  +",left="+(screen.availWidth-x)/2+",top= 10";

  newWindow = window.open("","newWindow",str3);
  newWindow.document.open();
  newWindow.document.write('<html><title> ÔÎÒÎ </title> <body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"  onBlur="self.close()" onClick="self.close()">');  
  newWindow.document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" height="100%"><tr><td>');
  newWindow.document.write('<img src="'+str+'" width="'+x+'" height="'+y+'" alt="ÇÀÊÐÛÒÜ" >'); 
  newWindow.document.write('</td></tr></table></body></html>');
  newWindow.document.close();
  newWindow.focus();

}    

function vr_data()
{

da = new Date();
d  = da.getDate();
m  = 1 + da.getMonth(); 
s=d +".0"+m+".2004 ã.";
document.writeln(s);

}      