function ukaz_obrazek(id) {
	window.open('bazar_obrazek.asp?id='+id,'fs_inzerat_obrazek','resizable=no, scrollbars=yes, height=400, width=400');
}

function show_detail(div) {
	divid = div.id;
	if (div.style.display == "") {
		div.style.display = "none";
	} else {
		div.style.display = "";
	}
}

function showBigImage(strURL)
{
	strReturn = window.showModalDialog(strURL, "Větší obrázek", "status:no; center:yes; help:no; minimize:no; dialogWidth=300pt; dialogHeight=500pt");
}