var okno;
var fish="r0";
var flower="f0";
var pict="o0";
var soft="s5";    // 10.1.2007
var ostatni="o0"; // 29.12.2004

function showB(blok,r_show, schovat) {		// aktualizace 13.3.2005
	document.getElementById(blok).style.display = "block";	
	if (r_show==1)	{
		document.getElementById(schovat).style.display = "none";	
	}
	else	{
		//
	}
}

function hideB(blok,r_hide, ukazat) {		// aktualizace 13.3.2005
	document.getElementById(blok).style.display = "none";
	if (r_hide==1)	{
		document.getElementById(ukazat).style.display = "block";
	}
	else	{
		//
	}
}

function Fullview(source) {   
	okno = window.open(source,'','scrollbars=no, titlebar=no, resizable=no,width=953,height=463,screenX=0, screenY=0');
	okno.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1250'>");
	okno.document.write("<meta name='GENERATOR' content='EasyPad 3.5'>");
	okno.document.write("<title>Full view</title><link rel='stylesheet' type='text/css' href='./css/jerry.css'>");
	okno.document.write("</head>");
	okno.document.write("<body bgcolor='Black' text='Black' TOPMARGIN=1 MARGINWIDTH=0 MARGINHEIGHT=0 LEFTMARGIN=1>");
	okno.document.write("<img src="+source+" alt='Kliknutím zavøi' border=0 onClick='Javascript:self.close()' style='cursor:pointer;'>");
	okno.document.write("</body></html>");
}

function FullviewGalerie(source) {   
	okno = window.open(source,'','scrollbars=no, titlebar=no, resizable=no,width=953,height=463,screenX=0, screenY=0');
	okno.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1250'>");
	okno.document.write("<meta name='GENERATOR' content='EasyPad 3.5'>");
	okno.document.write("<title>Full view</title><link rel='stylesheet' type='text/css' href='../css/jerry.css'>");
	okno.document.write("</head>");
	okno.document.write("<body bgcolor='Black' text='Black' TOPMARGIN=1 MARGINWIDTH=0 MARGINHEIGHT=0 LEFTMARGIN=1>");
	okno.document.write("<img src="+source+" alt='Kliknutím zavøi' border=0 onClick='Javascript:self.close()' style='cursor:pointer;'>");
	okno.document.write("</body></html>");
}


function showPMDD() {
 	document.getElementById('pmdd').style.display = "block";	
}

function hidePMDD() {
	document.getElementById('pmdd').style.display = "none";	
}

function Nahoru() {
	self.focus();	
}

function ShowFish(jaka) {
//--------------------------
		document.getElementById(fish).style.display ="none";
   		document.getElementById('r'+jaka).style.display = "block";
   		fish='r'+jaka;
}

function showDenik() {
//--------------------------
		document.getElementById('info').style.display = "none";
		document.getElementById('denik').style.display = "block";		
}



function ShowFlower(ktera) {
//--------------------------
		// - document.getElementById(flower).style.display ="none";
   		// - document.getElementById('f'+ktera).style.display = "block";
		parent.document.getElementById(flower).style.display ="none";
   		parent.document.getElementById('f'+ktera).style.display = "block";
   		flower='f'+ktera;
}

function ShowPicture(jaky) {
//--------------------------
		document.getElementById(pict).style.display ="none";
   		document.getElementById('o'+jaky).style.display = "block";
   		pict='o'+jaky;
}

function ShowSoftware(jaky) {
//--------------------------
		document.getElementById(soft).style.display ="none";
   		document.getElementById('s'+jaky).style.display = "block";
   		soft='s'+jaky;
}

function ShowOther(clanek) {		// aktualizace 29.12.2004
//--------------------------
		document.getElementById(ostatni).style.display ="none";
   		document.getElementById('o'+clanek).style.display = "block";
  		ostatni='o'+clanek;
		//--nadpis='n'+soft;
}

function Pictureview(source,s,v) {	// 5.1.2005   
//------------------------------
	okno = window.open(source,'','scrollbars=no, titlebar=no, resizable=no,width=5,height=5,screenX=0, screenY=0');
	okno.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1250'>");
	okno.document.write("<meta name='GENERATOR' content='EasyPad 3.5'>");
	okno.document.write("<title>Picture view</title><link rel='stylesheet' type='text/css' href='./css/jerry.css'>");
	okno.document.write("</head>");
	okno.document.write("<body bgcolor=#000000 text=#000000 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 LEFTMARGIN=0>");
   okno.document.write("<table width=100% border=0><tr align=center><td valign=middle>");
	okno.document.write("<img src="+source+" alt='Kliknutím zavøi' border=0 onClick='Javascript:self.close()' style='cursor:pointer;'>");
   okno.document.write("</td></tr></table>");
	okno.document.write("</body></html>");
	okno.resizeTo(s,v);
}

function Rok() { 			// 20.11.2005
//--------------
	var yr;
	Today = new Date();
	yr = Today.getFullYear();
	document.write(yr);
}