<!--
function SearchClear(elmName, text)
{
	elm = document.getElementById(elmName);

	if(elm.value == text)
	{
		elm.value = "";
		elm.focus();
	}
}

// function GetVoting(url, id)
// {
// 	$("#Voting"+id).load(url);
// }

function GetRating(url, id)
{
	$("#Rating"+id).load(url);
}

/*function GetVoting(url, id)
{
	$("#Voting"+id).load(url);
}
*/
function Voting(url, params)
{
	window.location = url+'?'+params;
};
//-->

