   var httpp = false;
   if(navigator.appName == "Microsoft Internet Explorer") 
   {
     httpp = new ActiveXObject("Microsoft.XMLHTTP");
   }
   else 
   {
     httpp = new XMLHttpRequest();    
   }
   var httppp = false;
   if(navigator.appName == "Microsoft Internet Explorer") 
   {
     httppp = new ActiveXObject("Microsoft.XMLHTTP");
   }
   else 
   {
     httppp = new XMLHttpRequest();    
   }
  function doshowaccount()
  {     
        if (document.getElementById('accounts'))
        {
        var url='/account.aspx';
        httpp.open('GET',url);
        httpp.onreadystatechange = function() {
        if(httpp.readyState == 4)      
        document.getElementById('accounts').innerHTML = httpp.responseText;
        };
        httpp.send(null);
        }
  } 
  function doshowlogin()
  {
        if (document.getElementById('logins'))
        {
          var url1='/toplogin.aspx?lid='+new Date().getTime()+'&rn='+Math.random();
        httppp.open('GET',url1);
        httppp.onreadystatechange = function()
         {
         
        if(httppp.readyState == 4) 
        document.getElementById('logins').innerHTML = httppp.responseText;
         };
         httppp.send(null);
         }
  }





