function openFabricSample(theURL) { //v2.0
  window.open(theURL,'_blank','resizable=yes,screenX=100,screenY=100,left=100,top=100,width=500,height=300');}
function openExtendedFabricSample(theURL) { //v2.0
  window.open(theURL,'_blank','resizable=yes,screenX=100,screenY=100,left=100,top=100,width=500,height=550');}
  


// http://forums.devarticles.com/javascript-development-22/how-to-disable-right-click-in-firefox-87551.html

var message="Sorry, right-clicking is disabled.\n\nAll images are copyrighted by WholesomeWear and should not be taken from this site."; // Message for the alert box

// Don't edit below!

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

if (document.all) { // for IE
	document.onmousedown=click;
}
else { // for FF
	document.onclick=click;
}