function right(e) {
	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
		return false;
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
		alert("NO! Sorry, you do not have permission to right click and save any images from our website. Furthermore, no images or portions of this website may be copied/borrowed/used without the expressed written consent of House Furniture, Inc d/b/a Victorian Furniture Company -www.victorianfurnitureco.com or www.victorianfurniturecompany.com.");
		return false;
		}
	return true;
	}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
