function abrir(direccion){
    var opciones = "fullscreen= 0" + 
                 ",toolbar= 1" + 
                 ",location= 1" + 
                 ",status= 1" + 
                 ",menubar= 1" + 
                 ",scrollbars= 1" + 
                 ",resizable= 1" + 
                 ",width= 1000" + 
                 ",height= 1000" + 
                 ",left= 0" + 
                 ",top= 0";
    var ventana = window.open(direccion,"SAMARK",opciones,1);
}
