
// No rightclick script v.2.5

var message="All content on this site is Copyright (c)1997-2003 www.mykpod.com.  All rights reserved.  Images are not licensed for any use other than personal viewing on this site without the express written permission of the author.  By use of this site, you agree to abide by these terms.";
 
// Don't edit below!

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;

