// JavaScript Document
function Flash(id, str)
{
  if (document.getElementById) {
    document.getElementById(id).innerHTML = str;
  }
}
Nowe=null;
function Otworz(s,w,src,tyt)
{
	if (Nowe!=null)
	{
		Nowe.close();
		Nowe=null;
	}
	Nowe=window.open("", "","toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,status=no,directories=no,resizable=no,height="+w+",width="+s);
	Nowe.document.write('<html><head><style>body{margin:0px; padding:0px;BACKGROUND-REPEAT:no-repeat}</style><title>'+tyt+'</title></head><body><img src="'+src+'" /></body></html>');
	Nowe.focus();
}