
// Migajacy tekst

function flash(id, kolor, czas, kolor2, czas2)
{
	document.getElementById(id).style.color = kolor;
	setTimeout('flash("' + id + '","' + kolor2 + '",' + czas2 + ',"' + kolor + '",' + czas + ')', czas);
}


// Otwieranie zdjec w nowym okienku Pop-up

noweOkienko = null;
function foto_popup(src, w, h){
  if(window.screen)
   {
    aw=screen.availWidth;
    ah=screen.availHeight;
   }
  else
   {
    aw=640;
    ah=480;
   }

  if(noweOkienko==null || noweOkienko.closed){
    ustawienia=
    "left=" + (aw-w)/2 + ","
    +"top=" + (ah-h)/2 + ","
    +"screenX=" + (aw-w)/2 + ","
    +"screenY=" + (ah-h)/2 + ","
    +"width=" + w + ","
    +"height=" + h + ","
 	+"innerWidth=" + w + ","
 	+"innerHeight=" + h + ","
 	+"toolbar=no,"
 	+"location=no,"
 	+"directories=no,"
 	+"status=yes,"
 	+"menubar=no,"
 	+"scrollbars=yes,"
 	+"resizable=no"
  noweOkienko = window.open("",'obrazek',ustawienia);
	}
	  noweOkienko.document.open();
	  noweOkienko.document.clear();
	  noweOkienko.document.write(
	  "<html><head><title>Sadar.pl</title>\n"
	  +"</head><body bgcolor=#000000>\n"
	  +"<div id='img' style='position:absolute; left:0; top:0; width:300; height:200px; z-index:2'><a href='javascript:window.close()'><img src="+ src +" width=" + w + " height=" + h + "  alt=' Zamknij ' border=0></a></div>\n"
	  +"</body></html>"
    );
	noweOkienko.document.close();
	noweOkienko.focus();
}

