// JavaScript Document
		campo = new Array();
		tipo = new Array();
		obligado = new Array();
		longitud = new Array();
		etiqueta = new Array();
		i = 0;

		campo[i] = "Nombre";
		tipo[i] = 6;
		obligado[i] = true;
		longitud[i] = 250;
		etiqueta[i++] = 'Nombre del Plan';

		campo[i] = "Empresa";
		tipo[i] = 6;
		obligado[i] = true;
		longitud[i] = 250;
		etiqueta[i++] = 'Empresa';
		
		
		campo[i] = "Plazo";
		tipo[i] = 6;
		obligado[i] = true;
		longitud[i] = 4;
		etiqueta[i++] = 'Plazo';
		
		campo[i] = "DescripcionResumida";
		tipo[i] = 1;
		obligado[i] = true;
		longitud[i] = 5000;
		etiqueta[i++] = 'Breve descripción';
				
		campo[i] = "Web";
		tipo[i] = 1;
		obligado[i] = false;
		longitud[i] = 275;
		etiqueta[i++] = 'Página Web';
				
				
		campo[i] = "x";
		tipo[i] = 7;
		obligado[i] = true;
		longitud[i] = 50;
		etiqueta[i++] = 'xGoogle';
		
		campo[i] = "y";
		tipo[i] = 7;
		obligado[i] = true;
		longitud[i] = 50;
		etiqueta[i++] = 'yGoogle';

