var dynamicContent_ajaxObjects = new Array();
var t_id = setInterval(animate,20);
var sending = false;

function sendInformation( frm,url ){
	
	var sending = true;
	var prog 		= my_getbyid('loader_container');
	var myfrm 	= eval('window.document.' + frm);
	var myview 	= myfrm.view.value;

	document.getElementById('textprogress').innerHTML = 'Enviando informacion, por favor espere...';

	prog.style.display='';
	prog.style.visibility='visible';
	animate();
	
	var ajaxIndex = dynamicContent_ajaxObjects.length;

	dynamicContent_ajaxObjects[ajaxIndex] = new sack();
	
	/*set all vars*/
	dynamicContent_ajaxObjects[ajaxIndex].setVar('nombres'	,myfrm.nombres.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('apellidos',myfrm.apellidos.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('email'		,myfrm.email.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('fecha'		,myfrm.fecha.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('civil'		,myfrm.civil.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('cedula'		,myfrm.cedula.value);
	//dynamicContent_ajaxObjects[ajaxIndex].setVar('direccion',myfrm.direccion.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('pais'			,myfrm.pais.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('telefonos',myfrm.telefonos.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('celular'	,myfrm.celular.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('ciudad'		,myfrm.ciudad.value);
	//dynamicContent_ajaxObjects[ajaxIndex].setVar('fax'			,myfrm.fax.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('tipo'			,myfrm.tipo.value);
	dynamicContent_ajaxObjects[ajaxIndex].setVar('idreferer',myfrm.idreferer.value);
	
	dynamicContent_ajaxObjects[ajaxIndex].requestFile = url+'?view='+myview;
	dynamicContent_ajaxObjects[ajaxIndex].onCompletion = function(){ sendFunction(ajaxIndex,myfrm); };
	dynamicContent_ajaxObjects[ajaxIndex].runAJAX();
}

function sendFunction(ajaxIndex,myfrm){
	
	remove_loading(t_id);
	
	alert( dynamicContent_ajaxObjects[ajaxIndex].response );
	
	/*clean all values*/
	/*myfrm.nombres.value 	= '';
	myfrm.apellidos.value = '';
	myfrm.email.value 		= '';
	myfrm.fecha.value 		= '';
	myfrm.civil.value 		= '';
	myfrm.cedula.value 		= '';
	myfrm.direccion.value = '';
	myfrm.pais.value 			= 1;
	myfrm.telefonos.value = '';
	myfrm.celular.value 	= '';
	myfrm.ciudad.value 		= '';
	myfrm.fax.value 			= '';*/
	
	dynamicContent_ajaxObjects[ajaxIndex] = false;
}