// JavaScript Document
function loadLogos(){
	var xmlHttp=getXmlHttpObject(); 
	var url="logos.php?num="+num+"&"+Math.random();
    xmlHttp.onreadystatechange=	function (){//alert(xmlHttp.readyState);
      	if(xmlHttp.readyState==4){
        document.getElementById("rightPanel").innerHTML=xmlHttp.responseText;
        }//end if
      }//end xmlHttp.onreadystatechange
	xmlHttp.open("GET",url,true);
    xmlHttp.send(null);
  }//end loadLogos

function getXmlHttpObject(){
  var xmlHttp=null;
  try{
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();}//end try
    
  catch (e){    
    // Internet Explorer
    try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}//end inner try
       
    catch (e)  {xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}//end inner catch
    }//end outer catch
       
  return xmlHttp;
}//end getXmlHttpObject