function Cambiar_Session_Cod_AJAX(prmtrNombreSession, prmtrCod)
	{
	var strUrl = '../_Librerias/Ejecutar_AJAX.asp';
//	if (prmtrAgregarAQueryString = true
	//strUrl += '?hiddAccion=session(""' + prmtrNombreSession + '"")=' + prmtrCod
	strUrl += '?hiddAccion=Cambiar_Session_Cod("' + prmtrNombreSession + '", ' + prmtrCod + ')'
	ajaxCaller.getPlainText(strUrl, onResponse_Cambiar_Session_Cod_AJAX);
	}

function onResponse_Cambiar_Session_Cod_AJAX(prmtrText)
	{
	//Despues de cambiar la vble sessión recargo la página para que se tenga en cuenta
	//document.location.href = '../inicio/index.asp' //document.location.href
	//alert(document.location.href)
	if (!Se_ha_producido_Error_en_AJAX (prmtrText))
		{
		document.location.href = document.location.href 
		}
	}
