function norobotmail(aUser, aDomain) { 
       document.location = "mailto:" + aUser + "@" + aDomain;
    }

// Get rid of the text bubble that shows up when you mouse over images
function delHover() {
    oLst = YD.getElementsBy(function(el) {return (YD.hasClass(el,'imgBorder') || YD.hasClass(el,'imgBorderOn'))},'img');
    for (i=0; i < oLst.length ; i++) {
        if (oLst[i].title && oLst[i].title != '') oLst[i].title = '';
        if (oLst[i].alt && oLst[i].alt != '') oLst[i].alt = '';
    }
}
YE.onContentReady('bodyWrapper', function() {if (!YD.hasClass(document.body, 'smugmug_ajax')) delHover()});
onPhotoShow.subscribe(function(){YE.onAvailable('mainImage', delHover)});


// Slideshow--Full Screen with Captions as default
YE.onAvailable('captions', function() {if (YD.hasClass(document.body,
"fsSlideshow")) this.click();});


// change the link on the SmugMug Logo
YE.onAvailable('homelink', function(e) {
this.href = "http://buckeyephotography.smugmug.com/";
this.firstChild.alt = "Buckeye Photography";
this.firstChild.title = "Buckeye Photography";
});
// removes the pipes characters in the toolbar header
YE.onAvailable('toolbar', function(e) {
this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");
});

// customize right-click protection warning
rightClickWarning = "All photos are property of Buckeye Photography. All rights reserved. Unauthorized use is strictly prohibited.";

<!--
//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com
// var message="";
// ///////////////////////////////////
// function clickIE() {if (document.all) {(message);return false;}}
// function clickNS(e) {if 
// (document.layers||(document.getElementById&&!document.all)) {
// if (e.which==2||e.which==3) {(message);return false;}}}
// if (document.layers) 
// {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS; }
// else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
// 
// document.oncontextmenu=new Function("return false")
// -->
