function verifyRateForm()
{
	var error="";
//	if (document.getElementById("commenttext").value=="") error+='Trebuie introduceti justificarea notei!\n';
	if (document.getElementById("go").selectedIndex==0) error+='Trebuie selectat nota!\n';
	//box.options[box.selectedIndex].
	if (document.getElementById("ratepro_image").value=="") error+='Trebuie introdus codul!\n';
	
	if (error!="") alert(error);
	return error=="";
}

function maxlength(maxchars)
{
	 if(document.rate.ratepro_comment.value.length > maxchars) 
	 {
	   alert('Too much data in the text box! Please remove '+
		(document.rate.ratepro_comment.value.length - maxchars)+ ' characters');
	   return false; 
	 }
	 else
	   return true; 
}
   
  
function verifyRateForm2()
{
	var error="";
	if (document.getElementById("ratepro_image").value=="") error+='Trebuie introdus codul!\n';
	if (error!="") alert(error);
	return error=="";
}

