

		campo = new Array();
		tipo = new Array();
		obligado = new Array();
		longitud = new Array();
		etiqueta = new Array();

		var i = 0;

		campo[i] = "xNombre";
		tipo[i] = 6;
		obligado[i] = true;
		longitud[i] = 250;
		etiqueta[i++] = 'Nombre';

		campo[i] = "xEmail";
		tipo[i] = 2;
		obligado[i] = true;
		longitud[i] = 255;
		etiqueta[i++] = 'Email';

		campo[i] = "xPregunta";
		tipo[i] = 6;
		obligado[i] = true;
		longitud[i] = 1000;
		etiqueta[i++] = 'Pregunta';

