function centrar(capa)
{
	ns4 = (document.layers)? true:false
	ie4 = (document.all)? true:false
	
	winW = (ns4)? window.innerWidth-16 : document.body.offsetWidth-20
	winH = (ns4)? window.innerHeight : document.body.offsetHeight
	ancho=document.all[capa].style.width;
	ancho=ancho.replace("px","");
	alto=document.all[capa].style.height;
	alto=alto.replace("px","");
	pos_left=(winW/2)-(ancho/2);
	pos_top=(winH/2)-(alto/2);
	if(pos_left<0)
	{
		pos_left=0;
	}	
	if(pos_top<0)
	{
		pos_top=0;
	}	
	document.all[capa].style.left=pos_left;
	document.all[capa].style.top=pos_top;
}
function recargarimagen(nombre,ruta,valor,bucle) {
	if(ruta=="")
	{
		alert("No hay ruta de imagen");
		return false;
	}
	if(!document.all[nombre])
	{
		alert("Falta objeto imagen");
		return false;
	}
	if(ruta=="")
	{
		alert("No hay ruta de imagen");
		return false;
	}
	var now = new Date();
	if (document.images) {
		document.all[nombre].src = ruta +"?"+ now.getTime();
	}
	if(bucle=="si")
	{
		setTimeout(reloadImage(ruta),valor);
	}
}