// JavaScript Document
// izwikwa se ot general/common/all/vote.php pri glasuwane
function Vote()
{
	document.form_vote.submit();
}

function cellHeightIndex()
{
	var cellHeight1;
	var cellHeight2;
	var td1 = 'report';
	var td2 = 'health';
	if (document.all) 
	{
		cellHeight1 = document.all[td1].clientHeight;
		cellHeight2 = document.all[td2].clientHeight;
		document.all[td2].height = cellHeight1;
	}
	if(!document.all && document.getElementById)
	{
		cellHeight1 = document.getElementById(td1).offsetHeight ;
		cellHeight2 = document.getElementById(td2).offsetHeight ;
		document.getElementById(td2).height = cellHeight1;
	}
}