/*---EXP-->--Funciones
	abrirw(a,b,c,d,e,f,g,h,i,j);
	ampliar(img)
	control(img)
	verfoto(img)
---*/

/*--EXP-->--Abrir.una.ventana.secundaria---*/
	function abrirw(a,b,c,d,e,f,g,h)
	{	/*---a---Exp-->--URL.a.redireccionar---*/
		/*---b---Exp-->--Nombre.que.asumirá.la.ventana.target---*/
		/*---c---Exp-->--Anchura---*/
		/*---d---Exp-->--Altura---*/
		/*---e---Exp-->--Activar.Scrollbars---*/
		/*---f---Exp-->--Activar.Menubar---*/
		/*---g---Exp-->--Activar.Location---*/
		/*---h---Exp-->--Activar.Resizable---*/

		var ok = true;
		var_parametros = '';

		if (b == null) { b = var_nombre; }
		if (c == null) { c = var_anchura; }
		if (d == null) { d = var_altura; }
		if (e == null) { e = var_scrollbars; }
		if (f == null) { f = var_menubar; }
		if (g == null) { g = var_location; }
		if (h == null) { h = var_resizable; }


		/*---Exp-->--Centramos.el.popup---*/
		i=(screen.height/2)-(d/2);
		j=(screen.width/2)-(c/2);

		/*---Exp-->--Incluimos.los.parametros---*/
		/*---Exp-->--Generacion.de.parametros---*/
		var_parametros += 'width='+c;
		var_parametros += ',height='+d;
		var_parametros += ',scrollbars=7'+e;
		var_parametros += ',menubar='+f;
		var_parametros += ',location='+g;
		var_parametros += ',resizable='+h;
		var_parametros += ',top='+i;
		var_parametros += ',left='+j;
		window.open(a,b,var_parametros)
	}



/*---EXP!---Abrimos.una.imagen.en.popup---*/
	function ampliar(img)
	{	foto1= new Image();
		foto1.src=(img);
		control(img);
	}
	function control(img)
	{	if((foto1.width!=0)&&(foto1.height!=0))
		{	verfoto(img);
	    }
		else
		{	funcion = "control('"+img+"')";
	        intervalo=setTimeout(funcion,20);
	    }
	}
	function verfoto( img )
	{	ancho = foto1.width + 20;
	    alto = foto1.height + 20;
	    cadena = 'width=' + ancho + ',height=' + alto;
	    ventana=window.open( img , '' , cadena );
	}
