function displayWindow(url,width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',sresizable=0,scrollbars=auto,menubar=no,top=10,left=100' );
}

function powieksz(name, width, height) 
{
	width=width+0;
	height=height+0;
	
	x = "TITLEBAR=0,LOCATION=0,RESIZE=0, WIDTH="+width+", HEIGHT="+height;

	newwindow = window.open('',"",x);

	newwindow.document.write('<html><head><title>Zdjêcie</title><link rel=Stylesheet href=styl.css type=text/css></head><body><img src="'+name+'" alt="Kliknij by zamkn±æ okno" title="Kliknij by zamkn±æ okno" border="0" onclick="javascript:window.close()"></body></html>');
}

function fot(img,wi,he) {
cont="<html><head><title>Klub Górski \"Zdobywcy\" -  Zdjêcie</title><link rel=\"Stylesheet\" href=\"styl.css\" type=\"text/css\" /></head><body><img src=\""+img+"\" alt=\"Zdjêcie\" title=\"Kliknij by zamkn±æ okno\" onclick=\"javascript:window.close() \"></body></html>";
param='toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,directories=no,status=no,resizable=no,width='+wi+',height='+he;
NoweOkienko=window.open('','',param);
NoweOkienko.document.open();
NoweOkienko.document.write(cont);
NoweOkienko.document.close();
NoweOkienko.focus();
}




function displayWindow2(url,width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',sresizable=0,scrollbars=yes,menubar=no,top=0,left=0' );
}


