/*
net4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;
mac = (navigator.appVersion.indexOf("Macintosh") != -1);

if (net4) {document.write ('<layer id="bkgd" top='+(parent.innerHeight-400)+' left='+(parent.innerWidth-600)+' z-index=0><img src="bkgd_sub.gif" width=600 height=400></layer>')}

if (ie4) {
document.write ('<div id="bkgd" style="z-index:-1; position=absolute; width: 600; height: 400; top=0; left:0; visibility: visible;"><img src="bkgd_sub.gif" width=600 height=400></div>');
bkgd.style.pixelLeft = document.body.clientWidth-600;
bkgd.style.pixelTop = document.body.clientHeight-400;
}*/

	var cw, ch;
	var test1 = document.body.scrollHeight;
	var test2 = document.body.offsetHeight;
	if (test1 > test2) // all but Explorer Mac
	{
			cw = document.body.scrollWidth;
			ch = document.body.scrollHeight;
	}
	else // Explorer Mac;
		 //would also work in Explorer 6 Strict, Mozilla and Safari
	{
			cw = document.body.offsetWidth;
			ch = document.body.offsetHeight;
	}


document.write ('<div id="bkgd" style="z-index:-1; position: absolute; width: 600; height: 400; top=0; left:0; visibility: visible;"><img src="bkgd_sub.gif" width=600 height=400></div>');



document.getElementById('bkgd').style.pixelLeft = cw-600;
document.getElementById('bkgd').style.pixelTop = ch-400;
/*
function showmenu() {
	if (net4) document.layers['menu'].visibility = 'show';
	if (ie4) document.all['menu'].style.visibility = 'visible';
	}

function hidemenu() {
	if (net4) document.layers['menu'].visibility = 'hide';
	if (ie4) document.all['menu'].style.visibility = 'hidden';
	}
*/
function showmenu() {
	document.getElementById('menu').style.visibility = 'visible';
	}

function hidemenu() {
	document.getElementById('menu').style.visibility = 'hidden';
	}

//write menu
/*if (net4) document.write('<layer id="menu" z-index=100 left=10 top=20 width=200 visibility="hide" bgcolor="#ffffcc" onmouseout="hidemenu();" onmouseover="showmenu();"><table cellpadding=0 cellspacing=0><td>');*/

document.write('<div id="menu" style="z-index:100; position:absolute; top:10; left:10; visibility:hidden"><table width=150 cellpadding=0 cellspacing=0 onmouseout="hidemenu();" onmouseover="showmenu();"><td><br>');

document.write ('<font face="Arial, Helvetica" size=-2 class="menu">&gt; <a href="postersusa.html">posters: american style</a><br>&gt; <a href="seamonkeys.html">sea monkeys</a><br>&gt; <a href="getty.html">the getty center</a><br>&gt; <a href="synergy.html">synergy 1998-99</a><br>&gt; <a href="bruinwalk.html">bruinwalk.com</a><br>&gt; <a href="fountainhead.html">the fountainhead</a><br>&gt; <a href="misc3d.html">misc 3D</a><br>&gt; <a href="aero.html">morbid curios</a><br>&gt; <a href="burr.html">aaron burr</a><br>&gt; <a href="links.html">links</a><br>&gt; <a href="resume.html">resum&eacute;</a><br>&gt; <a href="mailto:bk@uclalumni.net">e-mail</a><br><br></font>');

/*if (net4) document.write('</td></table></layer>');

if (ie4)*/

document.write('</td></table></div>');

