
function loadsect(sect,addr)//,param)
{  
   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("browser does not support AJAX!");    
		     return false;        }      }    }
  xmlHttp.onreadystatechange=function()
  {
      if(xmlHttp.readyState==4)
	  {
	      var tmp=xmlHttp.responseText;
	    //	      document.getElementById('txtSpan').innerHTML = tmp;
              parent.document.getElementById(sect).innerHTML = tmp;    
	  }
  };

  var url="/cgi-bin/messages/readmsg.cgi?act=show";
  if (addr=='news')
      url="/cgi-bin/rssshow.cgi?d=u";

  //  url=url+"?"+param+"&sid="+Math.random();
  url=url+"&sid="+Math.random();

   

  try
    {xmlHttp.open("GET",url,true); 
	xmlHttp.send(null);  
    } catch (e)
    {document.write(e.description);}
}


function loadsectifr(sect,addr,addnl)
{
  if (addr=='chat')
     var tmp='<iframe id="ifrmrss" name="ifrmrss" src="http://tatarica.com/chat.htm" width="421" 	height="400" 	frameborder="0"></iframe>';

  if (addr=='forum')
     var tmp='<iframe id="ifrmrss" name="ifrmrss" src="http://tatarica.com/cgi-bin/forum/frames.cgi?from=1483" width="921" 	height="600" 	frameborder="0"></iframe>';

  if (addr=='title')
     var tmp='<iframe id="ifrmrss" name="ifrmrss" src="http://tatarica.com/images/network.jpg" width="600" height="340" 	frameborder="0"></iframe>';

  if (addnl=='roboclub')
     tmp='<iframe id="ifrmrss" name="ifrmrss" src="http://tatarica.com/images/memberArea.jpg" width="600" height="340" 	frameborder="0"></iframe>';


  if (addr=='games')
  tmp='<iframe id="ifrmrss" name="ifrmrss" src="http://j.tatarica.com/Java/D3/draw.htm" width="801" height="650" frameborder="0" scrolling="no"></iframe>';
 

  if (addr=='respond')
  tmp='<iframe id="ifrmrss" name="ifrmrss" src="http://tatarica.com/cgi-bin/messages/readmsg.cgi?act=sendForm&nameT='+addnl+'" width="500" height="300" frameborder="0"></iframe>';

  if (addr=='profile')
  tmp='<iframe id="ifrmrss" name="ifrmrss" src="http://tatarica.com/cgi-bin/upload/submit.cgi?type=profiles" width="300" height="500" frameborder="0" scrolling="no"></iframe>';

  parent.document.getElementById(sect).innerHTML = tmp;    
}

function closeSect(sect)
{
 parent.document.getElementById(sect).innerHTML = "";    

}

function showSect(sect,what)
{
 document.getElementById(sect).innerHTML = what;    
}


function deleteSect(sect,msid)
{
    //  document.getElementById(sect).innerHTML = what;    

     var tmp='<iframe id="ifrmrss" name="ifrmrss" src="http://tatarica.com/cgi-bin/messages/delete.cgi?id='+msid+'" width="300" height="50" frameborder="0"></iframe>';
  parent.document.getElementById(sect).innerHTML = tmp;    
}


