function loadBanner(pid)
{  
	var xmlHttp;
  try
  {   
		xmlHttp=new XMLHttpRequest();
	}
  catch (e)
  {       
		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()
  {
  	if(xmlHttp.readyState==4)
    {
		if(xmlHttp.status==200){
			document.getElementById("banner"+pid).innerHTML=xmlHttp.responseText;
		}
    }
  }
	
	xmlHttp.open("GET","/ads/showAds.action?pid="+pid+"&ticket="+Math.random()*10,true);
	xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=UTF-8'); 
	xmlHttp.send(null);  
}