var FTACTUAL=0;
var MAXFOTOS=14;
var CARPETA="helade-07";

function gestionCarpetas(cp){
	if(cp=="primer-manurock-konfussion"){fotos=5;}
	if(cp=="01-07-06-escarabajo"){fotos=59;}
	if(cp=="23-07-06-bm"){fotos=30;}
	if(cp=="07-10-06-avanti"){fotos=31;}
	if(cp=="ensayo-byn"){fotos=36;}
	if(cp=="helade-07"){fotos=14;}
	carpeta(cp,fotos);
}

function carpeta(cp,m){
	document.getElementById("ftg").src="imagenes/bgfoto.png";
	document.getElementById("ftg2").src="fotos/"+cp+"/foto (0).jpg";
	document.getElementById("ltg").href="fotos/"+cp+"/foto (0).jpg";
	document.getElementById("ftg").src="fotos/"+cp+"/mini/foto-(0).jpg";
	CARPETA=cp;
	FTACTUAL=0;
	MAXFOTOS=m;
	document.getElementById("nft").innerHTML="&nbsp;<b>1</b> de <b>"+(MAXFOTOS+1)+"</b>&nbsp;&nbsp;|";
}

function mas(){
	if(FTACTUAL==MAXFOTOS){return;}
	document.getElementById("ftg").src="imagenes/bgfoto.png";
	FTACTUAL=FTACTUAL+1;
	document.getElementById("nft").innerHTML="&nbsp;<b>"+(FTACTUAL+1)+"</b> de <b>"+(MAXFOTOS+1)+"</b>&nbsp;&nbsp;|";
	document.getElementById("ftg2").src="fotos/"+CARPETA+"/foto ("+FTACTUAL+").jpg";
	document.getElementById("ltg").href="fotos/"+CARPETA+"/foto ("+FTACTUAL+").jpg";
	document.getElementById("ftg").src="fotos/"+CARPETA+"/mini/foto-("+FTACTUAL+").jpg";
	
}

function menos(){
	if(FTACTUAL==0){return;}
	document.getElementById("ftg").src="imagenes/bgfoto.png";
	FTACTUAL=FTACTUAL-1;
	document.getElementById("nft").innerHTML="&nbsp;<b>"+(FTACTUAL+1)+"</b> de <b>"+(MAXFOTOS+1)+"</b>&nbsp;&nbsp;|";
	document.getElementById("ftg2").src="fotos/"+CARPETA+"/foto ("+FTACTUAL+").jpg";
	document.getElementById("ltg").href="fotos/"+CARPETA+"/foto ("+FTACTUAL+").jpg";
	document.getElementById("ftg").src="fotos/"+CARPETA+"/mini/foto-("+FTACTUAL+").jpg";
}

function amp(){
	URL="foto.asp?ruta=fotos/"+CARPETA+"/foto ("+FTACTUAL+").jpg"
	id = "vnt";
 	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=525,height=400,left=0,top=0');");
	eval("window.page" + id + ".focus();");
}