

// ABRE la popup principal
// -----------------------------------------------------------------------------------------------
var ventanaMenu;

function abrePop (idMenu){
	if (ventanaMenu){
		ventanaMenu.close();
	}
	
	var ancho = 788;
	var alto = 497;
	
	var donde_x, donde_y;
	donde_x = (screen.width - ancho) / 2;
	donde_y = (screen.height - alto) / 2;
	
	ventanaMenu = window.open("index.asp?idMenu="+idMenu, "ventanaMenu", "width="+ ancho +", height="+ alto +",  menubar=no, left="+ donde_x +",top="+ donde_y +", scrollbars=no, location=no, resizable=no") 
}


// ABRE la popup de un producto
// -----------------------------------------------------------------------------------------------
var ventanaProducto;

function abrePopProducto(idProducto){
	if (ventanaProducto){
		ventanaProducto.close();
	}
	var ancho = 405;
	var alto = 340;
	
	var donde_x, donde_y;
	donde_x = 0;
	donde_y = 0;
	//ventanaProducto = window.open("popProducto.asp?nombreAuxMenu="+ nombreAuxMenu +"&archivo="+ archivo +"&cliente="+ cliente, "ventanaProducto", "width="+ ancho +", height="+ alto +", scrollbars=no, menubar=no, left="+ donde_x +",top="+ donde_y +", location=no, resizable=no") 
	ventanaProducto = window.open("popProducto.asp?idProducto="+ idProducto, "ventanaProducto", "width="+ ancho +", height=550, scrollbars=yes, menubar=no, left="+ donde_x +",top="+ donde_y +", location=no, resizable=no") 
}

// ABRE la popup de una noticia (lleva scroll)
// -----------------------------------------------------------------------------------------------
var ventanaNoticia;

function abrePopNoticia (idMenu, idNoticia){
	if (ventanaNoticia){
		ventanaNoticia.close();
	}
	
	var ancho = 788;
	var alto = 497;
	
	var donde_x, donde_y;
	donde_x = (screen.width - ancho) / 2;
	donde_y = (screen.height - alto) / 2;
	
	ventanaNoticia = window.open("index.asp?idMenu="+idMenu+"&int1="+idNoticia, "ventanaNoticia", "width="+ ancho +", height="+ alto +",  menubar=no, left="+ donde_x +",top="+ donde_y +", scrollbars=yes, location=no, resizable=no") 

}
