function fsee_normal_image(url, w, h) {
	var divimg = false;
	try {
		divimg = document.getElementById('div_normal_image');
		if (divimg) {
			if (!divimg.hasChildNodes()) {
				var img = document.createElement('img');
				img.setAttribute('src', url);
				divimg.appendChild(img);
				divimg.style.display='block';
				divimg.style.top= parseInt((screen.availHeight - w * 1) / 2) + 'px';
				divimg.style.left= parseInt((screen.availWidth - h * 1) / 2) + 'px';
			} else {
				divimg.style.display='block';
			}
		} else {
			alert('Su navegador no soporta las características de éste sitio.\nConsidere usar navegador web Firefox o actualice su versión de IE');
		}
	} catch(e) {
		alert('Su navegador no soporta las características de éste sitio.\nConsidere usar navegador web Firefox o actualice su versión de IE');
	};
}
//<div id="div_normal_image" style="display:none;position:absolute;cursor:pointer;cursor:hand;left:100px;top:100px;" title="Clic para quitar" onclick="this.style.display='none';"></div>