var oldreply;
function companyBlurbAJAX()
  {
  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)
        {
        return false;
        }
      }
    }
    xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4 && oldreply != xmlHttp.responseText)
        {
		var newreply = xmlHttp.responseText;
		
		oldreply = newreply;

		if(xmlHttp.responseText == ''){
			
			
		}else
		{
			document.getElementById("companyBlurbContainer").innerHTML = xmlHttp.responseText;
			document.getElementById("companyBlurbContainer").style.visibility = "visible";
		}
	}
	

       }
    xmlHttp.open("GET","companyBlurb.php?id="+document.getElementById("companyid").value,true);
    xmlHttp.send(null);
       //document.getElementById('wrapper').style.height = "100%";
       
       //document.getElementById('wrapper').style.height = document.getElementById('companyBlurbContainer').offsetHeight + document.getElementById('wrapper').offsetHeight + "px";
  }
