// Global JavaScript File
// Copyright 1997-2002 by TerraX.org and Shawn Steele
// These functions may not be reproduced or used
// without permission
globalopened = true;
ourbase="http://TerraX.org/journey/";
ourpath = window.location.toString();
temp = ourpath.lastIndexOf('/');
if (temp == -1)
{
  temp = ourpath.length;
}
ourpath = ourpath.substring(0,temp+1);

// Open a temporary pop up window
function ns(file,title,width,height)
{
  if(!width)  { width=150; }
  if(!height) { height=150; }
  tempwin=window.open(file,'','width=' + width + ',height='+height);
  tempwin.document.clear();
  tempwin.document.writeln(
   '<BASE><HEAD><TITLE>' +
    title + '</title></head><BODY onBlur="window.close();" background="/gfx/water.gif"><h2>' +
    title + '</h2><img src="' + ourpath + file + '"><p></body>');
  tempwin.onBlur='window.close();';
  tempwin.document.close();
  tempwin.focus();
  window.onClick='tempwin.close()';
}

// open another window
function pw(file,width,height)
{ a=window.open(ourpath + file,'name','width='+width+',height='+height);
}

// open a temporary definition window
function ds(title,text,width,height)
{ if(!width){width=200;}
  if(!height){height=150;}
  tempwin=window.open('','','width='+width+',menu,height='+height);
  tempwin.document.clear();
  tempwin.document.writeln(
   '<BASE><HEAD><TITLE>' +
    title + '</title></head><BODY onBlur="window.close()" background="/gfx/water.gif"><h4>' +
    title + '</h4>' + text + '</body>');
  tempwin.document.close();
}

function pageloaded()
{
}

function showbar()
{
  document.writeln(
   '<CENTER><img src="/gfx/alpha.gif" width=10 height=10>&nbsp;<a href="/index.aspx">Home Page</a> <img src="/gfx/bravo.gif" width=10 height=10>&nbsp;<a href="/people/people.aspx">People</a> <img src="/gfx/charlie.gif" width=10 height=10>&nbsp;<a href="/site/funstuff.aspx">Things&nbsp;To&nbsp;Do</a> <img src="/gfx/delta.gif" width=10 height=10>&nbsp;<a href="/sailing/glossary/glossary.aspx">Glossary</a> <img src="/gfx/echo.gif" width=10 height=10>&nbsp;<a href="/site/index.aspx">Index</a> <img src="/gfx/foxtrot.gif" width=10 height=10>&nbsp;<a href="/teacher/teacher.aspx">Teacher\'s&nbsp;Room</a> <img src="/gfx/golf.gif" width=10 height=10>&nbsp;<a href="/general/comments.aspx">Comment&nbsp;Form</a> <img src="/gfx/hotel.gif" width=10 height=10>&nbsp;<a href="/general/sponsors.aspx">Sponsors</a></center>');
}

function showcopy()
{
  document.writeln( '<center><address><a href="/general/aboutourweb.aspx#copy">&#169;1996-2009</a> TerraX.org * http://TerraX.org<br>');
  document.writeln( 'PO Box 643 * Lyons, CO 80540 * U.S.A.<br>');
  document.writeln( 'Shawn Steele, <a href="mailto:webmaster@TerraX.org">webmaster@TerraX.org</a><br></center>');
}

function showfoot(author, date)
{
  document.writeln( '<hr size=3>' );
  showbar();
  document.writeln( '<hr size=3>' );
  showcopy();
}

function showhead()
{
  showbar();
  showpix();
}

function showpix()
{
  document.writeln('<p><a href="/general/sponsors.aspx"><img src="/gfx/smlglobes.gif" width=240 HEIGHT=90 align=right lowsrc="/gfx/globeslow.gif" border=0></a><a href="/index.aspx"><img src="/gfx/terraxorg.gif" lowsrc="/gfx/terraxorglow.gif" width=302 height=56 border=0></a><br><i><font color="#ffffff">"Teaching people about the world in which we live."</font></i>');
}

