

function lg_main_news_ratsel(id, md)
{

   if(md==1)
   {
     for(i=1;i<=5;i++)
     {
       if(i<=id) 	
	       document.getElementById('rat_'+i).src = "/tim/div/stard_sel.gif";
       else
               document.getElementById('rat_'+i).src = document.getElementById('rat_'+i).alt;
     }
   }

   else
   {
     for(i=1;i<=5;i++)
     {
       document.getElementById('rat_'+i).src = document.getElementById('rat_'+i).alt;
     }
      
   }
}

function lg_main_news_ratdo(id)
{
	document.getElementById('ratingvote').value = id;
 	document.getElementById('ratingvote_form').submit();
	return true;
}