function norobotmail(corneliaschaible, gmail) { 
       document.location = "mailto:" + corneliaschaible + "@" + gmail;
    }

YE.onAvailable('captions', function() {if (YD.hasClass(document.body,
"fsSlideshow")) this.click();});



rightClickWarning = "All photos are property of Cornelia Schaible Photography. All rights reserved. Unauthorized use is prohibited."; 


// Removes the clickable link from my about journal gallery

function doOnLoad()
{
if (window.AlbumID && window.AlbumID == "1295003") //
{
removeLinkFromImg();
}
}
function removeLinkFromImg()
{
var links = document.getElementsByTagName("A");
for (var i = 0; i < links.length; i++)
{
var link = links[i];
var divElm = link.parentNode;
if (!divElm) continue;
if (divElm.className.indexOf("photo")<0) continue;
link.href = "javascript:void(0);";
}
}
