// JavaScript Document
// Declaramos el creador del objeto geneura_member
function genera_cuenta(dpto, nombre, correo) {
	this.dpto=dpto;
	this.nombre=nombre;
	this.correo=correo;
}

// Declaramos la matriz
var matriz=new Array(8);
      
// inicializamos la matriz
var numPersonas=0;
matriz[numPersonas++]=new genera_cuenta("gerencia", "Antonio", "antonio@construccionesantoniocaballero.com");
matriz[numPersonas++]=new genera_cuenta("admon", "Cristina", "cristina@construccionesantoniocaballero.com");
matriz[numPersonas++]=new genera_cuenta("admon", "Juan Alberto", "juanalberto@construccionesantoniocaballero.com");
matriz[numPersonas++]=new genera_cuenta("tecnico", "Juan", "juangranado@construccionesantoniocaballero.com");
matriz[numPersonas++]=new genera_cuenta("tecnico", "Juan Luis", "juanluis@construccionesantoniocaballero.com");
matriz[numPersonas++]=new genera_cuenta("admon", "Laura", "laura@construccionesantoniocaballero.com");
matriz[numPersonas++]=new genera_cuenta("admon", "Macarena", "macarena@construccionesantoniocaballero.com");