function llamaBloqueB(tipo,par,lang,div){
	var oXmlHttp = zXmlHttp.createRequest();
	oXmlHttp.open("post","/index.php?context=bloque&tipo="+tipo+"&p="+par+"&lang="+lang+"&div="+div,true);
	oXmlHttp.onreadystatechange = function() {
		if (oXmlHttp.readyState == 4){
			if (oXmlHttp.status == 200) {
				if (oXmlHttp.responseText){
					//alert(oXmlHttp.responseText);	
					resp = oXmlHttp.responseText.split('||');
					//alert(resp[0]+" \n "+resp[1]+" \n "+resp[2]+" \n "+resp[3]);
										if(resp[2] && resp[3]){$('#'+resp[3]).html(resp[2]);};
										if(resp[0]){eval(resp[0]+"("+resp[1]+")")};					
				}
			}else {//alert (oXmlHttp.statusText);
	}
	}};
	oXmlHttp.send(null);
}
