/* hledani */
function checkSearch(f)
	{
	if(f.what.value.length<3)
		{
		alert("Zadejte prosím text pro vyhledávání");
		f.what.focus();
		return false;
		}
	}


function showSearch()
{
	document.getElementById('searchbox').style.display = 'block';
}
function hideSearch()
{
	document.getElementById('searchbox').style.display = 'none';
}

function preloadImages(the_images_array) 
{

	for(loop = 0; loop < the_images_array.length; loop++)
	{
   		var an_image = new Image();
		an_image.src = the_images_array[loop];
	}
}

var the_images = new Array('/images/pop-up-right.gif','/images/pop-up-left.gif','/images/pop-up-top.gif','/images/pop-up-bottom.gif','/images/pop-up-close.gif');
preloadImages(the_images);


// fotogalerie
var newWindow="";
var flagwindow=0;
function OpenFoto(url, x, y)
	{
	if(x=='') x=500;
	if(y=='') y=375;
	if(flagwindow==1) closewin();
	newWindow=window.open(url, 'top', 'left=100,top=100,width='+x+',height='+y+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
	flagwindow=1;
	}

function closewin()
	{
	if(flagwindow)
		{
		flagwindow=0;
		newWindow.close();
		}
	}

