var left = 20;
var top  = 85;
function Abrir_ventana (popup, width, height)
{
	var opciones = "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, top=" + top + ", left=" + left + ", width=" + width + ", height=" + height;
	window.open('?page=Popup&popup=' + popup, "pagina_" + left, opciones);

	left += width + 20;
    if (left >= 1024)
    {
		top += 100;
        left = 21;
    }
}
function Zoom_Imagen(codigo, width, height)
{
	var opciones = "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=" + width + ", height=" + height;
	window.open('?page=Popup&action=ZoomImagen&id=' + codigo, "pagina_" + width+height, opciones);
}
function Zoom_Mapa(width, height)
{
	var opciones = "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=" + width + ", height=" + height;
	window.open('?page=Popup&action=ZoomMapa', "Mapa", opciones);
}
function OpenPopup(width, height, nro)
{
	var opciones = "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=" + width + ", height=" + height;
	window.open('?page=Popup&action=PopupListaPrecios&nro=' + nro, "pup_" + nro, opciones);
	left += width + 20;
    if (left >= 1024)
    {
		top += 100;
        left = 21;
    }
}
