// @autor Radu Badea 
// Friday - 20 July 2007
// version 1.0.25
// special for way2web

var root = "http://www.webhosting4.net/";
<!--

function votare( nota , medie )
{
	var this_div = 'votstar';
	var mes = new Array();
	mes[0] = "As aduce completari";
	mes[1] = "Nefolositor";
	mes[2] = "Oarecum folositor";
	mes[3] = "Folositor";
	mes[4] = "Foarte folositor";
	
	document.getElementById(this_div).innerHTML = '';
	for(i = 0 ; i < 5 ; i++ )
		if( i < nota ) 
			if( i+1 == nota) document.getElementById(this_div).innerHTML += '<img src="'+
				root+'images/vot/red.gif" onclick="votarefaq('+(i+1)+');" onmouseover="return overlib(\''+mes[i]+'\');"'+
				'onmouseout="javascript:vot_init('+medie+');return nd();"/>';
			else document.getElementById(this_div).innerHTML += '<img src="'+
				root+'images/vot/red.gif" onmouseover="javascript:votare('+(i+1)+','+medie+');"/>';
		else document.getElementById(this_div).innerHTML += '<img src="'+
			root+'images/vot/stea.gif" onmouseover="javascript:votare('+(i+1)+','+medie+');"/>';
}

// function ---  VOT_INIT ---
// returneaza stelutele mediei actuale, inca are permisiune de vot.

function vot_init(medie)
{
	var this_div = 'votstar';
	document.getElementById(this_div).innerHTML = '';
	for( i=0; i<5; i++)
		if(medie>i && medie< i+1) 
			document.getElementById(this_div).innerHTML += '<img src="'+root+
				'images/vot/half_yellow.gif" onmouseover="javascript:votare('+(i+1)+','+medie+');"/>'
		else
			if(medie>i) 
				document.getElementById(this_div).innerHTML += '<img src="'+root+
					'images/vot/yellow.gif" onmouseover="javascript:votare('+(i+1)+','+medie+');"/>'
			else
				document.getElementById(this_div).innerHTML += '<img src="'+
					root+'images/vot/stea.gif" onmouseover="javascript:votare('+(i+1)+','+medie+');">'	
}

-->
