﻿//Otw?rz okno ze zdjeciem
function zdjecie(URL,w,h) {
obrazek = new Image();
obrazek.src = URL;
if(w>800) w=800;
if(h>800) h=800;
//P?tla op??naij?ca
/*nowe_okno=window.open("","_blank","toolbar=no,status=yes,menu=no,scrollbars=no,resizable=no,width="+w+",height="+h+",top=30,left=30");
nowe_okno.document.open();
nowe_okno.document.writeln('<title>Damex</title>');
nowe_okno.document.writeln('<SCRIPT language=Javascript>');
nowe_okno.document.writeln('function wymiary() { ');
nowe_okno.document.writeln('w=document.zdjecie.width; h=document.zdjecie.height;');
nowe_okno.document.writeln('if(w>800) {document.zdjecie.width=800;document.zdjecie.height=parseInt(h*800/w);}');
nowe_okno.document.writeln('window.resizeTo(document.zdjecie.width,document.zdjecie.height)');
nowe_okno.document.writeln('}');
nowe_okno.document.writeln('</SCRIPT>');
nowe_okno.document.writeln('<BODY topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 onLoad="wymiary()">');
nowe_okno.document.writeln('<IMG src='+URL+' border=0 name=zdjecie>');
nowe_okno.document.writeln('</BODY>');
nowe_okno.document.close();
*/
TB_show('', URL, 'galery');
}


//Otw?rz okno z dokumentem (okre?l rozmiary)
function okno(URL,szer,wys) {
nowe_okno=window.open(URL,"_blank","toolbar=no,status=no,menus=no,scrollbars,location=no,resizable,width="+szer+",height="+wys+",top=30,left=30");
return;
}
//Otw?rz okno z dokumentem (zasymuluj target=_blank)
function url(URL) {
nowe_okno=window.open(URL,"_blank","toolbar,location,status,menubar,scrollbars,resizable,top=30,left=30,width=675,height=450");
return;
}
function okno_blank(URL,szer,wys) {
nowe_okno=window.open(URL,"_blank","toolbar=no,status=no,menus=no,scrollbars=no,resizable,width="+szer+",height="+wys+",top=30,left=30");
return;
}

