Creditos = null;



function ver_creditos(url){

	if(Creditos && !Creditos.closed){

		Creditos.close();

	}



	Creditos = window.open(url,"CreditosWin","width=200,height=200");

	Creditos.focus();

}



Foto = null;



function ver_foto(src){

	if(Creditos && !Creditos.closed){

		Creditos.close();

	}

	if(Foto && !Foto.closed){

		Foto.close();

	}



	img = new Image ();

	img.src=src;

	

	Foto = window.open ("foto.php?img="+src,"FotoWin","width="+img.width+",height="+img.height);



	Foto.focus();

}