﻿//Creem un Array la informacio necesaria de la Fira, com Nº Fotos, Carpeta on es troben etc
var firas = new Array;


// Introduim Dades						source					prefixe		extensio		fini	ffi		Títol								Stan
firas[0] = new DadesFira( './img/ferias/sept07/', 'PICT0', 	'.jpg', 349, 366,  'Septiembre 2007', '3C164' );

//Variables Globals
var Cont_Fotos;

function DadesFira( ruta_acces, prefixe, extensio, inici, fi, titol, stan)
{
	this.rutaImg = ruta_acces;			//ruta de les imatges 
	this.prefx = prefixe;						//prefixe de les imatges
	this.extImg = extensio;					//extensió
	this.indexIni = inici;					//index primera
	this.indexFin = fi;							//index última 
	this.TitolFira = titol;					//títol
	this.stanFira = stan;						//Numero de Stan
}


function mostrafotos(nfoto,nfira)
{
		if (nfoto==0){nfoto=firas[nfira].indexIni;}
		texte="";
		style_foto="";
		ifoto=nfoto;
		img = new Image();
		if (nfoto>=firas[nfira].indexFin)
		{ 
			ifoto=firas[nfira].indexFin;
			img.src = firas[nfira].rutaImg+firas[nfira].prefx+ifoto+firas[nfira].extImg;
			if (img.width>=img.height){ style_foto="id='hor'";}
			else { style_foto="id='ver'";}
			texte +="<div id='foto'><img src="+firas[nfira].rutaImg+firas[nfira].prefx+ifoto+firas[nfira].extImg+" border='0' "+style_foto+" /></div><div id='piefoto'><div id='flechai'><a href=# onclick='mostrafotos("+(ifoto-1)+","+nfira+")'><img src='img/flechai.jpg' border='0' /></a></div><div id='flechad'></div></div></div></div>";
		}
		else if (nfoto<=firas[nfira].indexIni)
		{
			ifoto=firas[nfira].indexIni;
			img.src = firas[nfira].rutaImg+firas[nfira].prefx+ifoto+firas[nfira].extImg;
			if (img.width>=img.height){ style_foto="id='hor'";}
			else { style_foto="id='ver'";}
			texte +="<div id='foto'><img src="+firas[nfira].rutaImg+firas[nfira].prefx+ifoto+firas[nfira].extImg+" border='0' "+style_foto+" /></div><div id='piefoto'><div id='flechai'></div><div id='flechad'><a href=# onclick='mostrafotos("+(ifoto+1)+","+nfira+")'><img src='img/flechad.jpg' border='0' /></a></div></div></div></div>";
		}
		else
		{
			img.src = firas[nfira].rutaImg+firas[nfira].prefx+ifoto+firas[nfira].extImg;
			if (img.width>=img.height){ style_foto="id='hor'";}
			else { style_foto="id='ver'";}
			texte +="<div id='foto'><img src="+firas[nfira].rutaImg+firas[nfira].prefx+ifoto+firas[nfira].extImg+" border='0' "+style_foto+" /></div><div id='piefoto'><div id='flechai'><a href=# onclick='mostrafotos("+(ifoto-1)+","+nfira+")'><img src='img/flechai.jpg' border='0' /></a></div><div id='flechad'><a href=# onclick='mostrafotos("+(ifoto+1)+","+nfira+")'><img src='img/flechad.jpg' border='0'/></a></div></div></div></div>";
		}
    document.getElementById("contenido").innerHTML = texte;  
}


