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,Texto)
{
var Nombre = '';

	if (root < 1) {
		//Naam = '../';
	}
	
	Nombre = Nombre + 'photo.html?';
	Nombre = Nombre + 'Foto='+Nombrefoto+'&Texto='+Texto;

	AbrirVentana(Nombre, 200, 325);
}

function abreventana2(pag)
{
window.open(pag,'ventana',"height=467,width=325,scrollbars=no");

}