function smallWin(title,w,h,x,y,winName)
{
var winName;
if (!winName) {winName="smallWin"};
aWindow=window.open(title, winName, "width=" + w + ", height=" + h + ", resizable, scrollbars, status=no");
aWindow.moveTo(x,y);
}
IE=document.all? 1:0 
if(!IE) document.captureEvents(Event.KEYPRESS); 
document.onkeypress = testKey; 
function testKey(key) 
{ 
k=IE? event.keyCode:key.which; 
if (k>90) k=k-32;
if (k==46) window.location.href = "#top";
if (k==60) smaller();
if (k==62) bigger();
if (k==66) window.location.href = "../BOOKS.HTM";
if (k==69) window.location.href = "#top";
if (k==72) window.location.href = "../HELP.HTM";
if (k==76) window.location.href = "../LEGEND.HTM";
if (k==77) window.location.href = "../MAPS.HTM";
if (k==78) window.location.href = "../NOTES-1.HTM";
if (k==82) window.location.href = "../INDEX.HTM";
if (k==83) window.location.href = "../SHIPS/INDEX.HTM";
if (k==84) window.location.href = "../TABLE-1.HTM";
if (k==88) window.location.href = "../TEXTS/INDEX.HTM";
}

function eMail()
{
var k="&#58;"
document.write("<a href='&#109;ailto" + k + "info&#64;galapagos.to'>info&#64;galapagos.to</a>");
}

var s=100;
function bigger(){
s = s + (.1 * s);
document.getElementById('thisDoc').style.fontSize=s + "%";
}
function smaller(){
s = s - (.1 * s);
document.getElementById('thisDoc').style.fontSize=s + "%";
}

function checkWidth(){
if (navigator.appName.substr(0,4)=="Micr" && document.body.offsetWidth>=951) document.getElementById('thisDoc').style.width="950px";
}
