<!--

var message=" Copyright ©2005-2008 Hawk Audio"+

"\n This site, the source code and all"+

"\n content is protected by copyright."+

"\n Any use without our approval"+

"\n is strictly forbidden.";

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;

// -->