function CambiaColor(astrNombre,color){
	if(!document.layers){
		if (document.all){
			document.all[astrNombre].style.background = color;
		}else{
			document.getElementById(astrNombre).style.background = color;
        }
    }
}
//****************************************************************************************************
//Agregado para Menu Plaza Staging
//****************************************************************************************************
function CambiaColorPlaza(astrNombre,colorB,colorFont){
	document.all(astrNombre).style.backgroundColor = colorB;
	document.all(astrNombre).style.color = colorFont;
	}
//****************************************************************************************************
