
function star(prispevek,j,h){
	var s = new Array();
	for(i=0;i<5;i++)s[i]=document.getElementById("i"+prispevek+i);
	for(i=0;i<5;i++)
		if(i<=j && s[i].src!="http://www.fichtlpokec.cz/obr/star3.png")
			s[i].src="http://www.fichtlpokec.cz/obr/star3.png";
		else if(i<=h && s[i].src!="http://www.fichtlpokec.cz/obr/star1.png")
			s[i].src="http://www.fichtlpokec.cz/obr/star1.png";
		else if(i>h && s[i].src!="http://www.fichtlpokec.cz/obr/star2.png")
			s[i].src="http://www.fichtlpokec.cz/obr/star2.png";

}

function hlasuj(prispevek,reg,hodnoceni){
	window.open('http://www.fichtlpokec.cz/hlasuj.html?prispevek='+prispevek+'&reg='+reg+'&hlas='+hodnoceni,
				'vykopavani','width=20,height=20,left='+
				((screen.width/2)-(20/2))+',top='+((screen.height/2)-(20/2)));
}

function starback(prispevek,h){
	var s = new Array();
	for(i=0;i<5;i++)s[i]=document.getElementById("i"+prispevek+i);
	for(i=0;i<5;i++)
		if(i<=h && s[i].src!="http://www.fichtlpokec.cz/obr/star1.png")
					s[i].src="http://www.fichtlpokec.cz/obr/star1.png";
		else if(i>h && s[i].src!="http://www.fichtlpokec.cz/obr/star2.png")
					s[i].src="http://www.fichtlpokec.cz/obr/star2.png";
}


function zobraz(id){
  span = document.getElementById(id);
  if(span.style.visibility=="visible"){
    span.style.visibility="hidden";
    span.style.display="none";
  }
  else{
    span.style.visibility="visible";
    span.style.display="block";
  }
}

function nwin(odk,w,h){
	window.open(odk,'','width='+w+',height='+h+',left='+
				((screen.width/2)-(w/2))+',top='+((screen.height/2)-(h/2)));
}
 
