//---------------------------------------------------------
//------ SCRIPT PRO OTEVRENI VELKE FOTKY V NOVEM OKNE -----
//---------------------------------------------------------

//------ pouziti: 
//------ <a href="relativni_cesta_k_obrazku" target="_blank" OnClick="show_big(this.href, 'nepovinny_popisek'[, 'styl'|0]"); return false;">
//---------------------------------------------------------

function show_big(obr,popisek,styl) {
	if (popisek) popisek=popisek.replace(/%/g,"%25").replace(/&/g,"%26").replace(/\+/g,"¤")
	else popisek=""
	if (!styl && styl!=0) styl=""
	if (obr.substring(0,7)!="http://") {
		from=""+self.location;
		if (obr.substring(0,1)!="/")
			obr=from.substring(0,from.lastIndexOf("/")+1)+obr;
		else
			obr=from.substring(0,from.indexOf("/",8))+obr;
	}
	window.open("/inc/showbig.inc.php?obr="+obr+"&styl="+styl+"&popisek="+popisek,"show_big","toolbar=no,scrollbars=no,location=no,status=no,width=520,height=420,resizable=yes,menubar=no,directories=no")
}

