function chgimg(area)
  {
  var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
   
   xmlHttp.onreadystatechange=function()
   {
       document.getElementById('ajaxloader').style.visibility='visible';
       gallery_area.innerHTML = (xmlHttp.responseText);

   }


   xmlHttp.onload=function()
      {
	document.getElementById('ajaxloader').style.visibility='hidden';
	document.getElementById('gallery_area').src='images/spacer.gif';
      }
   
    xmlHttp.open("GET","includes/process_gallery.asp?area="+area,true);
    xmlHttp.send(null);
  }
  
 function chgimg2(area)
  {
  
  ajaxloader.style.visibility="Visible";
 
  var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
   
   xmlHttp.onreadystatechange=function()
   {
   	ajaxloader.style.visibility="Hidden";
	gallery_area.innerHTML = (xmlHttp.responseText);	
   }


   xmlHttp.onload=function()
      {
	document.getElementById('ajaxloader').style.visibility='Hidden';
	document.getElementById('gallery_area').src='images/spacer.gif';
      }
   
    xmlHttp.open("GET","includes/process_gallery2.asp?area="+area,true);
    xmlHttp.send(null);  

  }
   
   
 function chgimg(area)
   {
   var xmlHttp;
   try
     {
     // Firefox, Opera 8.0+, Safari
     xmlHttp=new XMLHttpRequest();
     }
   catch (e)
     {
     // Internet Explorer
     try
       {
       xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
       }
     catch (e)
       {
       try
         {
         xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
         }
       catch (e)
         {
         alert("Your browser does not support AJAX!");
         return false;
         }
       }
     }
    
    xmlHttp.onreadystatechange=function()
    {
        document.getElementById('ajaxloader').style.visibility='visible';
        gallery_area.innerHTML = (xmlHttp.responseText);
 
    }
 
 
    xmlHttp.onload=function()
       {
 	document.getElementById('ajaxloader').style.visibility='hidden';
 	document.getElementById('gallery_area').src='images/spacer.gif';
       }
    
     xmlHttp.open("GET","includes/process_gallery.asp?area="+area,true);
     xmlHttp.send(null);
   }
   
   
   
  function loadtips(area)
   {
   
   ajaxloader.style.visibility="Visible";
  
   var xmlHttp;
   try
     {
     // Firefox, Opera 8.0+, Safari
     xmlHttp=new XMLHttpRequest();
     }
   catch (e)
     {
     // Internet Explorer
     try
       {
       xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
       }
     catch (e)
       {
       try
         {
         xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
         }
       catch (e)
         {
         alert("Your browser does not support AJAX!");
         return false;
         }
       }
     }
    
    xmlHttp.onreadystatechange=function()
    {
    	ajaxloader.style.visibility="Hidden";
 	tips_area.innerHTML = (xmlHttp.responseText);	
    }
 
 
    xmlHttp.onload=function()
       {
 	document.getElementById('ajaxloader').style.visibility='Hidden';
 	document.getElementById('gallery_area').src='images/spacer.gif';
       }
    
     xmlHttp.open("GET","includes/tips.asp?area="+area,true);
     xmlHttp.send(null);  
 
   }
   
