var message="Sorry, but while good, these are still teaser photos. All of them are on the CDs without branding, along with a lot of better ones AND the best Mardi Gras MPEGS you will find anywhere! Click the CD link to learn more!" 
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;

