<!--//
defaultStatus="Trade France USA Ltd."
var message="All images are copyright protected. Downloading them is not authorized. Copyright © 2001 Trade France USA Ltd. - All Rights Reserved." 
function click(e) {
if (document.all) {
if (event.button == 2) {
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;
//-->

