<!--
// Button images
	if (document.images) {
		img1_on =new Image(); img1_on.src ="img/home-on.jpg"; 
		img1_off=new Image(); img1_off.src="img/home-off.jpg"; 

		img2_on =new Image(); img2_on.src ="img/bio-on.jpg"; 
		img2_off=new Image(); img2_off.src="img/bio-off.jpg"; 

		img3_on =new Image(); img3_on.src ="img/biblio-on.jpg"; 
		img3_off=new Image(); img3_off.src="img/biblio-off.jpg";  

		img4_on =new Image(); img4_on.src ="img/stuff-on.jpg"; 
		img4_off=new Image(); img4_off.src="img/stuff-off.jpg";

		img5_on =new Image(); img5_on.src ="img/contact-on.jpg"; 
		img5_off=new Image(); img5_off.src="img/contact-off.jpg"; 
		}

	function movr(k) {
 		if (document.images) 
  		eval('document.img'+k+'.src=img'+k+'_on.src');
		}

	function mout(k) {
		if (document.images) 
		eval('document.img'+k+'.src=img'+k+'_off.src');
		}

	function handleOver() {
		if (document.images) 
		document.imgName.src=img_on.src;
		}

	function handleOut() {
		if (document.images) 
		document.imgName.src=img_off.src;
		}
//-->

function open_win_exodus()
{
window.open("art-exodus.htm","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=500, height=550");
}

document.onselectstart=new Function('return false');
function dMDown(e) {return false;}
function dOClick() {return true;}
document.onmousedown=dMDown;
document.onclick=dOClick;
document.onselectstart = null;


