function InsertContent(tid) {
if(document.getElementById(tid).style.display == "none") {
document.getElementById(tid).style.display = "";
}
else {
document.getElementById(tid).style.display = "none";
}
}
function ajaxFunction(PAGE,AREA)
  {
  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)
        {
        document.getElementById(AREA).innerHTML=xmlHttp.responseText;
        }
      }
    xmlHttp.open("GET",PAGE);
    xmlHttp.send(null);
  }
function InsertContent2(tid) {
document.getElementById(tid).style.display = "block";
}
function RemoveContent(tid) {
document.getElementById(tid).style.display = "none";
}