var strNombreCapa = ""
function Cargar_Noticia_AJAX(prmtrCodNoticia, prmtrNombreCapa)
	{
	strNombreCapa = prmtrNombreCapa
//	alert("Dentro de Cargar_Noticia_AJAX.\nCodNoticia: " +  prmtrCodNoticia)
	Mostrar_Estado_Cargando_Rapido(strNombreCapa);
	strUrl = "../_Librerias/Cargar_Noticia_AJAX.asp" 
	strUrl += "?CodNoticia=" + prmtrCodNoticia
	strUrl += "&hiddAccion=Cargar_Noticia_AJAX(" + prmtrCodNoticia + ")"
//		alert("strUrl: " +  strUrl)
	ajaxCaller.getPlainText(strUrl, onResponse_Cargar_Noticia_AJAX);
	//ajaxCaller.postForPlainText(strUrl, vblesFormulario, onResponse_Cargar_Noticia_AJAX);
	}
function onResponse_Cargar_Noticia_AJAX (prmtrText)
	{
	Ocultar_Estado_Cargando_Rapido(strNombreCapa)
	if (!Se_ha_producido_Error_en_AJAX (prmtrText))
		{
		//prompt(prmtrText, prmtrText)
		//alert(prmtrText.substr(prmtrText.length - 500, 500))
		XX(strNombreCapa).innerHTML = prmtrText
		}
	}