
function roll( n, text ) {
	document.rollimg.src = "/images/" + n;
	document.getElementById("text").innerHTML=text;
}

function highlight( a, n ) {
	if( n == 1 ) {
//		a.bgColor="#654523";
		a.style.background="#654523";
	} else {
//		a.bgColor="";
		a.style.background="";
	}
}

function hyperlink( a ) {
	document.location = a;
}

var message="Contents & Graphics Copyright ©2006 Stephanie Stephens"; // Message for the alert box

// Don't edit below!

function click(e) {
	if (document.all) {
		if (event.button == 2) {
		alert(message);
		return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}

document.onmousedown=click;
