// JavaScript Document

function selfuncionario(id)
{
	var Argumentos = {
		url: 'info.php?id='+id,
		handleAs: "text",
		preventCache: true,
		load: respuesta,
		error: function(error) {
			alert(error);
		}
	}

	dojo.xhrGet(Argumentos);
}

function respuesta(data)
{
	texto=data.split('|');
	
	if(texto[0]=="1")
	{
		document.getElementById("DIVDEPENDENCIA").innerHTML =texto[1];
		document.getElementById("DIVCORREO").innerHTML =texto[2];
		document.getElementById("DIVTELEFONO").innerHTML =texto[3];
		document.getElementById("DIVDOMICILIO").innerHTML =texto[4];
	}
	else
	{
		document.getElementById("DIVDEPENDENCIA").innerHTML ='';
		document.getElementById("DIVCORREO").innerHTML ='';
		document.getElementById("DIVTELEFONO").innerHTML ='';
		document.getElementById("DIVDOMICILIO").innerHTML ='';
	}
}