// JavaScript Document

var errFunc = function(t) {
    alert('Error ' + t.status + ' -- ' + t.statusText + ' -- ' + t.responseText );
}

var delegaciones=function(ec_id){
	
	var qs;
	// cargo el formualrio
	new Ajax('direcciones.php?hiria=' + ec_id ,
	{method: 'post',
	postBody:'post=1',
	update:$('direcciones'),/*,
	onComplete:function(){
		generaPestanasAjax(ec_seccion,ec_id,0);
		generaMenuAjax(ec_seccion,1);
		//cargarCombo('comboajax','cmbpadre',$('cmbfamilia').getValue() + ',' + $('oidpadreanterior').getValue() + ',' + $('id').getValue());
		},
	onRequest: myAjaxLoading.showLoading,
	onSuccess: myAjaxLoading.hideLoading,*/
	onFailure: errFunc
	}).request();

	return false;
}