﻿var click_alert = "Sorry, that function is disabled.\n\nALL WORKS Copyright 2001-2007, Susi Franco - No works on this site may be reproduced or used in any manner without Artist’s explicit consent.";

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(click_alert);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(click_alert);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;