// JavaScript Document


<!--


function nextImage(num){
	document.photo.src = "img/" + num + ".jpg";
}

function nextImage2(imgname){
	document.photo.src = "img/" + imgname;
} 

function nextIframe(iframeUrl){
	window.frames.photo.location.href = iframeUrl;
} 

function playSound(iframeUrl){
	window.frames.sound.location.href = iframeUrl;
} 

var message="Right mouse click disabled for this page";

function click(e) {

if (document.all) {

if (event.button==2||event.button==3) {

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;











// --> 



