var win_obr;
function fullsize(soubor, w, h, nazev, cesta) {
		var sc;
		text=pinyin(nazev); 
    if (!cesta) {cesta="obr/foto/";}
		if (win_obr && !win_obr.closed) {win_obr.close();}
		if (w > (screen.width - 50)) { w = (screen.width - 50); sc = "scrollbars"; }
		if (h > (screen.height - 70)) { h = (screen.height - 70); w += 18; sc = "scrollbars"; }
		win_obr=window.open("","obr","width="+(w+6)+",height="+(h+14)+","+sc+",toolbar=no,menubar=no,left="+((screen.width-w-20)/2)+",top="+((screen.height-h-70)/2));
		win_obr.document.write("<!DOCTYPE HTML PUBLIC \\\"-//W3C//DTD HTML 4.0 Transitional//EN\\\"><html><head><link rel='stylesheet' type='text/css' href='css/main.css'></head><body onclick='window.close()'><img src='"+cesta+soubor+"'><br><p class='text left'>" + text + "</p><span class='text8 center'>Kliknutím okno zav&#345;ete...</span></body></html>");
		win_obr.document.close();
}
