function vote(stars) {

	

	if (stars<1) stars=1;

	if (stars>5) stars=5;

	

	document.getElementById('vote-value').value=stars;

	document.getElementById('vote-message').innerHTML="Ati acordat nota "+stars+" din 5";

	

	if (stars==1) document.getElementById('therating').className='rating onestar';

	if (stars==2) document.getElementById('therating').className='rating twostar';

	if (stars==3) document.getElementById('therating').className='rating threestar';

	if (stars==4) document.getElementById('therating').className='rating fourstar';

	if (stars==5) document.getElementById('therating').className='rating fivestar';



}



function expand(object){

	document.getElementById(object).style.display='block';

}
function collapse(object){

	document.getElementById(object).style.display='none';

}