// JavaScript Document pro www.bludnykruh.com
// Made by Tomáš Doležal

//=======================================================================
//                     Funkce pro změnu stylu v menu
//=======================================================================
function mhHover(tbl,idx,cls)	{										
var t,d;																
	if(document.getElementById) t=document.getElementById(tbl);
	  else t=document.all(tbl);
	if(t==null) return;
	if(t.getElementsByTagName) d=t.getElementsByTagName("TD");
	  else d=t.all.tags("TD");
	if(d==null) return;
	if(d.length<=idx) return;
	d[idx].className=cls;
}
//=======================================================================

//=======================================================================
//                     Funkce pro otevření info okna
//=======================================================================
function openInfo(id) {
	window.open("info.php?clen="+id ,"info", "top=10, left=10, width=470, height=270, menubar=no, directories=no, toolbar=no, status=no, scrollbars=yes");
}

function seeImg(url, width, height) {
	width += 18;
	height += 18;
	window.open("galery/"+url ,"seeImg", "top=10, left=10, width="+width+", height="+height+", menubar=no, directories=no, toolbar=no, status=no, scrollbars=yes");
}

//=======================================================================