// JavaScript Document
function otevri_okno(url,nazev,width,height){
	url = 'galerie/'+url;
	okno =	window.open('okno.html',nazev,"width="+width+",height="+height);
	okno.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\"><html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><title>Foto-"+nazev+"</title></head><body>");
	okno.document.write('<img src="'+url+'">');
	nazev = nazev.replace(/_/ig," ");
	okno.document.write('<div style="text-align:center;font-size:20px;font-weight:bold;">'+nazev);
	okno.document.write("</body></html>");
}
function otevri_prohlidku(url,width,height){
	url = 'galerie/'+url;
	okno =	window.open('okno.html',nazev,"width="+width+",height="+height);
	okno.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\"><html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><title>Foto-"+nazev+"</title></head><body>");
	okno.document.write("<object width="+width+" height="+height+" classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\"><param name=\"src\" value=\""+url+"\"><param name=\"autoplay\" value=\"true\"><param name=\"controller\" value=\"false\"><embed src="+url+" width="+width+" height="+height+" autoplay=\"true\" controller=\"false\" pluginspage=\"http://www.apple.com/quicktime/download/\"></embed></object>");
	okno.document.write("</body></html>");
}
