function formthing() {
	vara="opticron";
	document.write("
 |  | 
");
}
function load_buttons()
{
getAjaxBut();
}
function getAjaxBut()
{
	var http = false;
	if(navigator.appName == "Microsoft Internet Explorer") {
	  http = new ActiveXObject("Microsoft.XMLHTTP");
	} else {
	  http = new XMLHttpRequest();
	}
	http.open("GET", "/button.asp");
	http.onreadystatechange=function() {
	  if(http.readyState == 4) {
		splitAds(http.responseText);
	  }
	}
	http.send(null);
}
function splitAds(rtxt)
{
spl=rtxt.split(";;");
document.getElementById("banner-top").innerHTML=spl[0];
document.getElementById("buttons-left").innerHTML=spl[1];
document.getElementById("buttons-right").innerHTML=spl[2];
document.getElementById("banner-bottom").innerHTML=spl[3];
}
function butCl(aid)
{
	var http = false;
	if(navigator.appName == "Microsoft Internet Explorer") {
	  http = new ActiveXObject("Microsoft.XMLHTTP");
	} else {
	  http = new XMLHttpRequest();
	}
	var randomnumber=Math.floor(Math.random()*1000000)
	http.open("GET", "/buttoncount.asp?aid="+aid+"&r="+randomnumber);
	http.onreadystatechange=function() {
	  if(http.readyState == 4) {
		// alert(http.responseText);
		var done=1;
	  }
	}
	http.send(null);
	return null;
}
function companyStats(cid,tpe)
{
	var http = false;
	if(navigator.appName == "Microsoft Internet Explorer") {
	  http = new ActiveXObject("Microsoft.XMLHTTP");
	} else {
	  http = new XMLHttpRequest();
	}
	var randomnumber=Math.floor(Math.random()*1000000)
	http.open("GET", "/statscount.asp?cid="+cid+"&tpe="+tpe+"&r="+randomnumber);
	http.onreadystatechange=function() {
	  if(http.readyState == 4) {
		// alert(http.responseText);
		var done=1;
	  }
	}
	http.send(null);
	return null;
}
function sw(t)
{
  t=t.substring(0,t.length-4)
  
  r=String.fromCharCode(95,121,121,122,95);
  
  while (r.indexOf("#") > -1)
    r=r.replace("#","");
  
  while (t.indexOf(".") > -1)
    t=t.replace(".","@");
  
  while (t.indexOf(r) > -1)
    t=t.replace(r,".");
  
  var s=""
  var l=t.length;
  
  for (i=0;i<=l;i=i+1) 
  {
      s=s + t.charAt(l-i);
  }
  
  document.write('' + s + '');
}
function shemword()
{
document.write(String.fromCharCode(69,109,97,105,108));
}