function fullbanner_off()
{
	document.getElementById('fullBanner').style.visibility="hidden";
	document.getElementById('fullBannerData').style.visibility="hidden";
}

function writeEmbedFlash(file, width, height)
{
  document.write('<embed src="'+file+'" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent"></embed>');
}

var objects = document.getElementsByTagName("object");

for (var i=0; i<objects.length; i++)
    objects[i].outerHTML = objects[i].outerHTML;

function openWindow() { window.open("","FullImage",'toolbar=0,location=0,scrollbars=0,width=740,height=580,resizable=0,top=20,left=20'); }
function openPreview() { window.open("","FullImage",'toolbar=0,location=0,scrollbars=0,width=30,height=30,resizable=0,top=20,left=20'); }
function setWindow() { window.resizeTo(photo.width+30, photo.height+70) }

function menu_on(id) {
for(i=1;i<6;i++) {
	if(i!=id) {
		document.getElementById('menuSection'+String(i)).style.visibility="hidden";
		}
	}
	document.getElementById('menuSection'+String(id)).style.visibility="visible";
}
	
function menu_off(id) {
document.getElementById('menuSection'+String(id)).style.visibility="hidden";
}

function menu_off_all(id){
for(i=1;i<6;i++){
		if(i!=id) {
			document.getElementById('menuSection'+String(i)).style.visibility="hidden";
		}
	}
}

function getBrowser(){
     var browser = navigator.appName;
//     var br_type = navigator.appVersion;
     if(browser=='Netscape'){ prohlizec = 'F'; }
     if(browser=='Microsoft Internet Explorer'){ prohlizec = 'IE'; }
     if(browser=='Opera'){ prohlizec = 'O'; }
     return prohlizec;
}

function searchOn(){
     var pr = getBrowser();
     if(pr=='IE'){
	     var v1 = navigator.appVersion;
	     var v = v1.split(';');
	     var verze = v[1];
	     //alert(verze);
     }
// urceni elementu
	var obj = document.getElementById('search');
// zjisteni sirky vysky
	sirka = 300;
	vyska = 55;
	obj.style.width = sirka+'px';
	obj.style.height = vyska+'px';
// velikost okna prohlizece
	if(window.innerWidth){ sirkaCelkem = window.innerWidth; }
	else{ sirkaCelkem = document.body.offsetWidth; }
	if(window.innerHeight){ vyskaCelkem = window.innerHeight; }
	else{ vyskaCelkem = document.body.offsetHeight; }
	x = sirkaCelkem-sirka;
	y = vyskaCelkem-vyska;
	//pozice obrazku
	//if(!obj.style.position){ obj.style.position = 'absolute'; }
	if(!obj.style.top){ obj.style.top = '0px'; }
	if(!obj.style.left){ obj.style.left = '0px'; }
	xx = x/2;
	yy = y/2;
	xx = parseInt(xx);
	yy = parseInt(yy);
	// zaviraci okynko
	var closeD = document.createElement('div');
	closeD.innerHTML = 'X';
	with(closeD.style){
		background = '#FFF';
		color = '#000';
		fontWeight = 'bold';
		position = 'absolute';
		width = '20px';
		height = '15px';
		top = '0px';
		right = '0px';
		cursor = 'hand';
		cursor = 'pointer';
	}
	obj.appendChild(closeD);
	// pozadi
	var body = document.getElementsByTagName('body').item(0);
	var bg = document.createElement('div'); // vytvoreni pozadi
	body.appendChild(bg);
	with(bg.style){
		display = 'block';
		top = '0px';
		left = '0px';
		width = '100%';
		if(pr=='IE'){
			//alert(document.body.offsetHeight);
			//alert(window.clientHeight);
			//alert(document.body.clientHeight);
			height = document.body.clientHeight+'px';
		}
		else{ height = '100%'; }
		if(pr=='F' || pr=='O'){ position = 'fixed'; }
		else if(verze==' MSIE 7.0'){ position = 'fixed'; }
		else { position = 'absolute'; }
		visibility = 'visible';
		zIndex = '50';
		background = '#000';
		opacity = "0.50";
		filter = 'alpha(opacity=50)';
	}
	//obrazek
	with(obj.style){
		textAlign = 'center';
		display = 'block';
		position = 'absolute';
		background = '#FFF';
		zIndex = '100';
		visibility = 'visible';
		left = xx+'px';
		top = yy+'px';	
	}
	closeD.onclick = function(){
		body.removeChild(bg);
		obj.style.display = 'none';
	}
	bg.onclick = function(){
		body.removeChild(bg);
		obj.style.display = 'none';
	}
}
