function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}

function BuildPage(intPage)
{
     WriteMenu(intPage);
}

function WriteMenu(intPage)
{
     var strMenu = '<font class="Menutext" ><a href="introduction.htm" >Introduction</a></font>';
     strMenu = strMenu+'<font class="Menutext" ><a href="overview.htm" >Profiling Overview</a></font>';
     strMenu = strMenu+'<font class="Menutext" ><a href="serviceprofiling.php" >Service Profiling</a></font>';
     var strMenuOld = '<font class="Menutext" ><a href="twitterprofiling.php" >Social Profiling</a></font>';
     strMenuOld = strMenuOld+'<font class="Menutext" ><a href="twittertracking.php" >Social Tracking</a></font>';
     strMenu = strMenu+'<font class="Menutext" ><a href="analysis.htm" >Analysis</a></font>';
     strMenu = strMenu+'<font class="Menutext" ><a href="technical.htm" >Technicals</a></font>';
     strMenu = strMenu+'<font class="Menutext" ><a href="revenuegeneration.htm" >Revenue Generation</a></font>';
     strMenu = strMenu+'<font class="Menutext" ><a href="downloads.htm" >Downloads</a></font>';
     strMenu = strMenu+'<font class="Menutext" ><a href="charges.htm" >Charges</a></font>';
     strMenu = strMenu+'<font class="Menutext" ><a href="contact.php" >Contact</a></font>';
     
     document.getElementById("MainMenuBar").innerHTML=strMenu;
     
}


function ChangeButtonImageSource(elImage, strImAddress)
{

     elImage.src =strImAddress;
}




