// JavaScript Document
function rateSelect(value,path){
	obj=MM_findObj("rate");
	if(value >= 1 && value <= 6){
		obj.src=path+"images/rate_"+value+".gif";
	}else{
		obj.src=path+"images/rate_zero.gif";	
	}
}