var aj_rate = new ajax()

function onclickRate(sid)
{
	var theForm=document.getElementById('form_data_'+sid)
	if(theForm){
		if(theForm.r_rate.value=='') return;
		aj_rate.sid=theForm.r_scimmia_id.value
		_rate=theForm.r_rate.value
		info=document.getElementById('r'+aj_rate.sid)
		info.innerHTML=''
		aj_rate.loadtxtdoc('ajax.rate.php', onRate, 'r_scimmia_id', aj_rate.sid, 'r_rate', _rate)
	}
}

function onRate()
{
	if(aj_rate.isready())
	{
		info=document.getElementById('r'+aj_rate.sid)
		info.innerHTML=aj_rate.text()
//		tt_Init();
	}
}