var objetoAjax;

var destino='';

function getObjetoAjax()
{
	var xhr=false;
	if(window.XMLHttpRequest)
	{
		xhr=new XMLHttpRequest();
	}
	else if(window.ActiveXObject)
	{
		try
		{
			xhr=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch(e)
		{
		 		try
				{
					xhr=new ActiveXObject("Microsoft.XMLHTTP");
				}
				catch(e)
				{
					xhr=false;
				}
		}
	}
	return xhr;
}


function swActivar(origen, dest, Id)
{
  eval("objetoAjax"+Id+"=getObjetoAjax()");
 	if(eval("objetoAjax"+Id))	{
		eval("objetoAjax"+Id+".open('GET',origen,true)");
		eval('objetoAjax'+Id+'.onreadystatechange=function(){ if (objetoAjax'+Id+'.readyState==4) {document.getElementById(dest).src = eval("objetoAjax"+Id+".responseText"); } else {document.getElementById(dest).src = "/gestion_web/imagenes/loading.gif";}; } ');  
		eval("objetoAjax"+Id+".send(null)");
	}
}

function swActivarGaleria( Id, idImagen2)
{
  origen="../../../../gestion_web/generico/funciones_imagenes/activar_galeria.php?Id="+Id+"&Id2="+idImagen2;
  dest="img_"+Id+"_"+idImagen2;
  eval("objetoAjax"+Id+"=getObjetoAjax()");
 	if(eval("objetoAjax"+Id))	{
		eval("objetoAjax"+Id+".open('GET',origen,true)");
		eval('objetoAjax'+Id+'.onreadystatechange=function(){ if (objetoAjax'+Id+'.readyState==4) {document.getElementById(dest).src = eval("objetoAjax"+Id+".responseText"); } else {document.getElementById(dest).src = "/gestion_web/imagenes/loading.gif";}; } ');  
		eval("objetoAjax"+Id+".send(null)");
	}
}


function swActivarMultimedia( Id, idmultimedia2)
{
  origen="../../../../gestion_web/generico/funciones_multimedia/activar_galeria.php?Id="+Id+"&Id2="+idmultimedia2;
  dest="mult_"+Id+"_"+idmultimedia2;
  eval("objetoAjax"+Id+"=getObjetoAjax()");
 	if(eval("objetoAjax"+Id))	{
		eval("objetoAjax"+Id+".open('GET',origen,true)");
		eval('objetoAjax'+Id+'.onreadystatechange=function(){ if (objetoAjax'+Id+'.readyState==4) {document.getElementById(dest).src = eval("objetoAjax"+Id+".responseText"); } else {document.getElementById(dest).src = "/gestion_web/imagenes/loading.gif";}; } ');  
		eval("objetoAjax"+Id+".send(null)");
	}
}

function swActivarUsuario(Id)
{
  origen="activarusuario.php?Id="+Id;
  dest="img_"+Id;
  eval("objetoAjax"+Id+"=getObjetoAjax()");
 	if(eval("objetoAjax"+Id))	{
		eval("objetoAjax"+Id+".open('GET',origen,true)");
		eval('objetoAjax'+Id+'.onreadystatechange=function(){ if (objetoAjax'+Id+'.readyState==4) {document.getElementById(dest).src = eval("objetoAjax"+Id+".responseText"); } else {document.getElementById(dest).src = "/gestion_web/imagenes/loading.gif";}; } ');  
		eval("objetoAjax"+Id+".send(null)");
	}
}

