// JavaScript Document

	function protector(mouseevent) {
		if (navigator.appName == 'Netscape' && (mouseevent.which == 2 || mouseevent.which == 3))
			return false;
		else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
			alert("Please contact Marta at Salon Paradise for a copy of this image.  Thank you.");
			return false;
		} else return true;
	}
	
	document.onmousedown=protector;
	if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown=protector;
	
	function chg1pic(nam1, img1) {
		document[nam1].src=[img1]
	}

	function chg2pic(nam1, img1, nam2, img2) {
		document[nam1].src=[img1]
		document[nam2].src=[img2]
	}

	function changeBG2(whichColor){
	document.bgColor = whichColor;
	}

	function topon(n1) {
	document[n1].src="images/arrow-u-on.gif"
	}
	function topoff(n1) {
	document[n1].src="images/arrow-u.gif"
	}