var root = 0;

function AbrirVentana(foto, ancho, alto)
{
	var ImageWindow = null;
	var xPositie = 0;
	var yPositie = 0;
		xPositie = (screen.availWidth - ancho) / 2;
		yPositie = (screen.availHeight - alto) / 2;
	ImageWindow = window.open(foto,"","height="+alto+",width="+ancho+",screenX="+xPositie+",screenY="+yPositie+",resizable=yes,noresize=no,toolbar=0,location=0,directories=0,status=0,menubar=0")
}

function abrirfoto(Nombrefoto)
{
var Nombre = '';

	if (root < 1) {
		//Naam = '../';
	}
	
	Nombre = Nombre + 'photo.htm?';
	
	/*if (Nummer < 10) {
		Naam = Naam + '0';
	}*/
	Nombre = Nombre + Nombrefoto;

	AbrirVentana(Nombre, 436, 345);
}
