var browser = navigator.vendor;
if (browser == 'Firefox')
	{
	document.writeln("<link rel='stylesheet' type='text/css' href='../myStyleFox.css'>");		
	}
else if (browser == 'Netscape')
	{
	document.writeln("<link rel='stylesheet' type='text/css' href='../myStyleMoz.css'>");
	}
else
	{
	document.writeln("<link rel='stylesheet' type='text/css' href='../myStyle.css'>");
	}

///////////////////////////////////////////////////////////////////////////////////////////////

function lPics(heading, photo)
{
win=open("", "displayWindow", "width=800,height=600,top=0,left=0,status=0,toolbar=0,menubar=0,resizable,scrollbars=1");
win.document.open();
win.document.write("<html><head><title>" +  heading );
win.document.write("</title></head><body style='background:#000000'><center>");
win.document.write("<img src=' " + photo + " '/> ");
win.document.write("</center></body></html>");
win.document.close();
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

function move() 
{     
   document.getElementById('arrow').style.left=125;     
   window.setTimeout("moveAgain();",550);     
}

function moveAgain() 
{     
   document.getElementById('arrow').style.left=150;     
   window.setTimeout("move();",550);     
}

//////////////////////////////////////////////////////////////////////////////////////////////////////
if (document.images)
{
i1 = new Image();
i1.src = "images/of1.gif";

i2 = new Image();
i2.src = "images/of2.gif";

}

var banner = Math.random() *1 + 1;
banner = Math.round(banner);

function bannerChanger()
{
banner = Math.random() *1 + 1;
banner = Math.round(banner);
document.images['ape'].src = eval("i" + banner + ".src");
//setTimeout("bannerChanger()", 2000);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
function biography(person)
{
WinObj=window.open("../biography/" + person + ".htm", "WindowName", "width=780,height=580,top=0,status=0,toolbar=0,left=0,menubar=0,resizable,scrollbars=1" );
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////
function sPics(heading, photo)
{
win=open("", "displayWindow", "width=1000,height=300,top=0,left=0,status=0,toolbar=0,menubar=0,resizable,scrollbars=1");
win.document.open();
win.document.write("<html><head><title>" +  heading );
win.document.write("</title></head><body style='background:#000000'><center>");
win.document.write("<img src=' " + photo + " '/> ");
win.document.write("</center></body></html>");
win.document.close();
}

