 var nume=1;
 function menu(ruta,ancho,alto){
 ancho_ventana=ancho+20;
  alto_ventana=alto+20;
  var cadena="ven";
  cadena=cadena+nume;
  features = "width="+ancho_ventana+",height="+alto_ventana+",top="+(screen.height-alto)/2+",left="+(screen.width-ancho)/2;	
  window.open(ruta,cadena,features);
  window.cursor='default';
  nume=nume+1;
 }

