
var uppis='the mind-altering site';
defaultStatus = uppis;
var loc = document.location.href;


function chText(a){
  if(document.all){
    document.all.info.innerHTML=a;
    status=a;
  }
  else{
    document.getElementById("info").innerHTML = a;
    status=a;
  }
}

function empty(){
  if(document.all){
    document.all.info.innerHTML="";
  }
  else{
    document.getElementById("info").innerHTML = "";
	window.status=uppis;
  }
}

function popit(u, h, w){

  newwindow=window.open(u,'name','height='+h+', width='+w+'');
  if (window.focus){
    newwindow.focus()
  }

  return false;
}



