// JavaScript Document

function cargarProgreso(valor, maximo, actual){
	var progressBar = new YAHOO.widget.ProgressBar({minValue:0,maxValue:maximo,value:actual, direction:"btt",height:"20px",width:"300px"});
	progressBar.render("4estrellas");
}