<!--
function right(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) {
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button
== 2 || event.button == 3)) {
alert("This website and all contents are owned and licensed by Consultex Inc.\n All contents are copyrighted and not available for download or use on any other\n site without the expressed written consent of Consultex Inc.\n\n *All Rights Reserved* © 1999-2005.    Consultex Inc.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
window.onmousedown=right;
window.onmouseup=right;
-->