<!--

function new_imgPopup(imgPath, imgcaption, setHeight, setWidth)
{
newWindow = window.open('','Popup','width=' + setWidth + ',height=' + setHeight + ',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,copyhistory=no,resizable=yes,menubar=no');
newWindow.opener = self;
newWindow.focus();

newWindow.document.write("<html><head><title>Image Viewer</title></head><body bgcolor=\"#000000\"><center><img src=\"" + imgPath + "\" border=0 style=\"border:1px solid black;\"><br><font color=\"white\">" + imgcaption + "<br>" + "Depending on the speed of your connection, this may take some time.</font></center></body></html>");
}


// No right click

strMessage = "Right click is not permitted. All images (c) Copyright Marine Leather Exports Pty Ltd";
browser_version  = parseInt(navigator.appVersion)
browser_netscape = navigator.appName=="Netscape"
browser_explorer = navigator.appName=="Microsoft Internet Explorer"

document.onmousedown = clickcatch;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (browser_netscape && browser_version<5) window.onmousedown = clickcatch;

function clickcatch(e)
{
if (browser_netscape && e.which > 1)
	{
   alert(strMessage)
   return false
   }
else if (browser_explorer && (event.button >1))
	{
   alert(strMessage)
   return false;
   }
}

// -->