/***********************************************
* Bookmark site script- Â© Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}


// disable right click
showRightWarning = true;
copyrightMsg = "Copyright© 2005-2009 David L Smithdale. Your right mouse button has been disabled.";
function rightclickAlert() {
                if (showRightWarning) {
                    window.alert(copyrightMsg);
                    return false;
                }
                else {
                    return true;
                }
            }
function clickIE4(){
                if (event.button==2){
                    rightclickAlert(message);
                }
            }
function clickNS4(e){
                if (document.layers||document.getElementById&&!document.all){
                    if (e.which==2||e.which==3){
                        rightclickAlert(message);
                    }
                }
            }
if (document.layers){
                document.captureEvents(Event.MOUSEDOWN);
                document.onmousedown=clickNS4;
            }
else if (document.all&&!document.getElementById){
                document.onmousedown=clickIE4;
            }
document.oncontextmenu = rightclickAlert;
		
