function errorCargaImg(oImg){		var oCapaError = document.createElement('div');			oCapaError.innerHTML = '<br/><br/>&#60; Imagen no disponible &#62;';	oCapaError.style.width = oImg.width + 'px';	oCapaError.style.height = oImg.height + 'px';	oCapaError.className = 'errorImg';		oImg.parentNode.replaceChild(oCapaError, oImg);	}
