function show(obj) {
	// show/hide the divisions
	document.getElementById("mainDiv").style.display="none";
	document.getElementById("screenshotsDiv").style.display="none";
	document.getElementById("downloadDiv").style.display="none";
	document.getElementById("buysourceDiv").style.display="none";
	document.getElementById("aboutDiv").style.display="none";
	document.getElementById("otherDiv").style.display="none";
	document.getElementById(obj).style.display="block";
}

function reset_top() {
	parent.scrollTo(0,0);
}

var message="This wouldn't happen if you used FireFox!";
function click(e)
   {
   if (document.all) {
      if (event.button == 2) {
         alert(message);
         return false;
      }
   }
   if (document.layers) {
      if (e.which == 3) {
         alert(message);
         return false;
      }
   }
   }
   if (document.layers) {
      document.captureEvents(Event.MOUSEDOWN);
   }
document.onmousedown=click;

function goThere(form){
	var linkList=form.selectThis.selectedIndex
	if(!linkList==""){window.location.href=form.selectThis.options[linkList].value;}
}

function goToURL(url,windowname) {
	window.open(url,windowname); 
}

function Show_Text(status_text)
{
window.status=status_text;
}

function popup(url,windowname) {
	window.open(url,windowname,'scrollbars=yes,menubar=no,status=no,toolbar=no,resizable=yes');
}
