function cl(menuid)
{                 
   if (document.getElementById(menuid).style.display=="none")
   { 
       document.getElementById(menuid).style.display="block"
   } 
   else 
   {
       document.getElementById(menuid).style.display="none"
   }
}        

function setRate(mark, id) {
	var rand = parseInt((Math.random()*10000000));
        document.location.href = "/vote/"+id+"-"+mark+".html?rnd="+rand;
 }

