function vote_over2(id_lokalu)
{
	document.getElementById("voteDes_" + id_lokalu).innerHTML = 'Zaloguj się, aby ocenić';
}

function vote_out2(id_lokalu)
{

	document.getElementById("voteDes_" + id_lokalu).innerHTML = '&nbsp;';
}

function vote_over(id_object, j, vote)
{
	for ( i = 0 ; i<=j ; i++ )
	{
  		eval("document.images.ocena"+vote+"_" + id_object + "_" + i + ".src='templates/images/vote1_full.gif'");
 	}
}
function vote_out(id_object, j, ocena, vote)
{
	for (i=0 ; i < 5 ; i++)
	{
		if (ocena >= 1)
		{
  			eval("document.images.ocena"+vote+"_" + id_object + "_" + i + ".src='templates/images/vote2_full.gif'");
		}
		else if ((ocena > 0.4) & (ocena < 1))
		{
			eval("document.images.ocena"+vote+"_" + id_object + "_" + i + ".src='templates/images/vote2_half.gif'");
		}
		else
		{
			eval("document.images.ocena"+vote+"_" + id_object + "_" + i + ".src='templates/images/vote2_null.gif'");	
		}
		ocena--;
 	}
}
function vote_show(txt)
{
	txt = unescape(txt);
	txt = txt.split('|');
	var id_lokalu = txt[0];
	var ocena = txt[1];
	var ooo = ocena;
	var liczba_ocen = txt[2];
	var vote = txt[3];
	var html = "";

	if (document.getElementById("ocena_" + id_lokalu))
	{
		html += "<div class='des cl'>&nbsp;</div>";
		for (var i = 0; i < 5; i++)
		{
			if (ocena >= 1)
			{
				html += "<img src='templates/images/vote1_full.gif' alt='Ocena' />";
			}
			else if ((ocena > 0.4) & (ocena < 1))
			{
				html += "<img src='templates/images/vote1_half.gif' alt='Ocena' />";
			}
			else
			{
				html += "<img src='templates/images/vote1_null.gif' alt='Ocena' />";
			}
			ocena--;
		}
		document.getElementById("ocena_" + id_lokalu).innerHTML = html;
		document.getElementById("ocena_srednia"+id_lokalu).innerHTML = "Średnia ocena: " +ooo + '<br />Głosów: ' + liczba_ocen;
		
	}
}
function vote_show2(txt)
{
	txt = unescape(txt);
	txt = txt.split('|');
	var id_lokalu = txt[0];
	var ocena = txt[1];
	var ooo = ocena;
	var liczba_ocen = txt[2];
	var vote = txt[3];
	var html = "";

	if (document.getElementById("ocena_" + id_lokalu))
	{
		html += "<div id ='voteDes_"+id_lokalu+"' class='des cl'><h1>Oddane głosy</h1></div>";
		for (var i = 0; i < 5; i++)
		{
			if (ocena >= 1)
			{
				html += "<img src='templates/images/vote1_full.gif' alt='Ocena' />";
			}
			else if ((ocena > 0.4) & (ocena < 1))
			{
				html += "<img src='templates/images/vote1_half.gif' alt='Ocena' />";
			}
			else
			{
				html += "<img src='templates/images/vote1_null.gif' alt='Ocena' />";
			}
			ocena--;
		}
		document.getElementById("ocena_" + id_lokalu).innerHTML = html;
		document.getElementById("ocena_srednia"+id_lokalu).innerHTML = "Średnia ocena: " +ooo + '<br />Głosów: ' + liczba_ocen;

	}
}
