// JavaScript Document

function pokaz_schowaj(id) {
	var tabs = 0;
	var currentTab;
	var rexp ='';
	var i;
	var tmp;
	var countTab = 1;
	var tmpElem = null;
	var punkt;
	var tresc_ok;
        var wino;

        wino = document.getElementById('tresc_wino');
        wino.className = "ukryj";

	while ( tmpElem = document.getElementById('punkt' + countTab) ) {
		countTab++;
		tabs++;
	}

	currentTab = id;

	for ( i=1 ; i<=tabs ; i++ ) {
		punkt = document.getElementById("punkt" + i);
		tresc_ok = document.getElementById("tresc_ok" + i);

		if ( i==currentTab ) {
			punkt.className = "aktywny";
			tresc_ok.className = "opis";
		} else {
			punkt.className = "";
			tresc_ok.className = "ukryj";
		}
	}
}


function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}



function drukuj_wynik(){
	this.window.focus();
	this.window.print();
}


function przenies(link) {
        document.location=link;
}
 
 function otworzOkno(plik,nazwa,a,b) {
        oknoNowe = window.open(plik,nazwa,'resizable=yes,  scrollbars=yes, width='+a+', height='+b+', status=yes, menubar=yes, location=no')
}

function openPictureWindow_Fever(imageName,alt) {
        newWindow = window.open("","okno","width=20,height=20,left=50,top=50");
        newWindow.document.open();
        newWindow.document.write('<html><title>'+alt+'</title>');
        newWindow.document.write('<script TYPE="text/javascript">');
        newWindow.document.write('function dopasuj() {szer = document.fotografia.width;wys = document.fotografia.height;top.window.resizeTo(szer+10,wys+60);  napis.style.display = "none"; napis2.style.display = ""}');
        newWindow.document.write('</script>');        
        newWindow.document.write('<body bgcolor="#290005" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"  onLoad="dopasuj();">'); 
        newWindow.document.write('<center>');        
        newWindow.document.write('<div id="napis"><p style="font-family: Verdana,Tahoma,Arial; font-size: 11px; color: #ffffff; margin:10;">Otwieram plik...</p></div>');          
        newWindow.document.write('<img src='+imageName+' name="fotografia" alt='+alt+'>'); 
        newWindow.document.write('<div id="napis2" style="display: none" align="center"><a href="javascript: window.print()" style="font-family: Verdana,Tahoma,Arial; font-size: 11px; color: #ffffff; margin:10;">[ Drukuj ]</a>&nbsp;&nbsp;<a href="javascript: window.close()" style="font-family: Verdana,Tahoma,Arial; font-size: 11px; color: #ffffff; margin:10;">[ Zamknij ]</a></div>');                           newWindow.document.write('</center>');          
        newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
}

