// Disable right-click on the webpage
// <!--
var message="";
function clickIE() {
	if (document.all) {
		(message);
		return false;
	}
}

function clickNS(e) {
	if (document.layers || (document.getElementById && !document.all)) {
		if (e.which == 2 || e.which == 3) {
			(message);
			return false;
		}
	}
}

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown = clickNS;
} else { 
	document.onmouseup = clickNS;
	document.oncontextmenu = clickIE;
}

document.oncontextmenu = new Function("return false")

// Make 1st object (o1) visible, o2 and o3 invisible
// file1 is the image filename for imgObj1 with default base_url
// same for file2 and file3 as image filenames
function active1stDiv(o1, o2, o3, imgObj1, file1, imgObj2, file2, imgObj3, file3) {
	var base_url = 'images/design2003/';
	o1.style.display = 'block';
	o2.style.display = 'none';
	o3.style.display = 'none';
	if (file1 != '') {
		imgObj1.src = base_url + file1;
	}
	if (file2 != '') {
		imgObj2.src = base_url + file2;
	}
	if (file3 != '') {
		imgObj3.src = base_url + file3;
	}
}

// -->

