function cellOvr(src,clrOver){ 
		src.style.cursor = 'default'; 
		src.style.backgroundColor = clrOver; 
} 
function cellOut(src,clrIn){ 
		src.style.cursor = 'default'; 
		src.style.backgroundColor = clrIn; 
}

function odkaz(key)
{
	zobraz=window.open("zobraz.php?i=" + key,
			"zobraz",
			"width=550,height=600,menubar=no,directories=no,"+
			"toolbar=no,location=no,status=no,scrollbars=no,resizable=yes,left=100, top=100");
	zobraz.focus();
}	
