//carga una imagen determinada en una ventana con una determinada
//dimension
function verImagen(img)
{ imagen="../Imagenes/Galeria/"+img;
  string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=660,height=500,left=0,top=0";
  fin=window.open(imagen,"",string);
}

function verPage(page)
{ pagina="../Pages/"+page;
  string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=280,height=418,left=50,top=50";
  fin=window.open(pagina,"",string);
}
//carga un los tickets para ser impresos
function prtTicket(id)
{ string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=351,height=185,left=100,top=100";
  ruta = "ticket.php?id="+id;
  fin=window.open(ruta,"",string);
}
function verfotoGaleria(img)
{ pagina="../Pages/foto.php?img="+img;
  string="toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=660,height=500,left=50,top=50";
  fin=window.open(pagina,"",string);
}
function verfotoGaleria2(img)
{ pagina="../Pages/foto2.php?img="+img;
  string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=660,height=500,left=50,top=50";
  fin=window.open(pagina,"",string);
}
function verPageWHXY(page,W,H,X,Y)
{ pagina="../Pages/"+page;
  string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+W+",height="+H+",left="+X+",top="+Y+"";
  fin=window.open(pagina,"",string);
}
function verPage2WHXY(page,W,H,X,Y)
{ pagina=page;
  string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+W+",height="+H+",left="+X+",top="+Y+"";
  fin=window.open(pagina,"",string);
}
function openWindow(dest,id,w,h)
{ pagina=dest+".php?it="+id;
  string="toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width="+w+",height="+h+",left=50,top=50";
  fin=window.open(pagina,"",string);
}

