function Pop() { 
 referer = window.location;
 popupWin = window.open('http://www.triangleresearch.com/cgi-bin/tellafriend.pl?' + referer, 
     'Participant', 'location=no,scrollbars,width=450,height=300');  
window.name = 'opener';
}
var message="Copyright 2001-2003 by Literary Potpourri. WARNING ! All content contained within this site is protected by copyright laws. Unauthorized use of any material, graphic or literary, is strictly prohibited.";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
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;
