   Browser_Name = navigator.appName;   Browser_Ver  = parseInt(navigator.appVersion);   if((Browser_Name == "Netscape" && Browser_Ver >= 3) || (Browser_Name == "Microsoft Internet Explorer" && Browser_Ver >= 4)) Browser_Gen = ">=3rd";   else Browser_Gen = "<3rd";    // índice de la foto seleccionada	// La matriz comienza en el número 1 y se genera desde PHP, la posición 0 del array está vacía	foto_actual = 0; 	function prevslide(){		cual = foto_actual - 1;		if(cual < 1){			cual = imgpics.length - 1;		}		changeslide(cual);	}   	function nextslide(){		cual = foto_actual + 1;		if(cual > imgpics.length-1){			cual = 1;		}		changeslide(cual);	}  	function changeslide(ver){		if(foto_actual != 0)			document.getElementById('cellNumber_'+foto_actual).bgColor = '#777777';		if(ver == '0'){			foto_actual = 0; 			return;		}		document.imgFotoNormal.src = "/imgs/pixel_big.gif";		document.imgFotoNormal.src = imgpics[ver][1];		// si alguno de estos campos en vacío el span se queda vacío y parece que se desplace		if(imgpics[ver][3] == "") imgpics[ver][3] = "&nbsp;";		if(imgpics[ver][4] == "") imgpics[ver][4] = "&nbsp;";		if(imgpics[ver][5] == "") imgpics[ver][5] = "&nbsp;";		document.getElementById('fotoFecha').innerHTML = imgpics[ver][3];		document.getElementById('fotoLugar').innerHTML = imgpics[ver][4];		document.getElementById('fotoDescripcion').innerHTML = imgpics[ver][5];		document.getElementById('cellNumber_'+ver).bgColor = '#ff9900';		foto_actual = 1*ver; //para que no concatene string	}	function abrirfoto() {		if(foto_actual==0)return;		windowMap = window.open(imgpics[foto_actual][2],"Foto","toolbar=yes,location=no,directories=no,titlebar=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=800,height=600");		windowMap.focus();	}