<!--
var 
mymessage="Copyright (C) Quick Concepts, LLC";
function rtclickcheck(keyp){ 
if (navigator.appname == "netscape" && keyp.which == 3) { 
 alert (mymessage) ;
 return false ;
 }
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) 
{
alert (mymessage) ;
return false ; 
} 
}
document.onmousedown = rtclickcheck

//-->

