
function addBookmark()
{
var bookmark_url="http://theorniphile.info/labagh_woods/index.html";
var text_description="Birding LaBagh Woods Forest Preserve";
if (navigator.appName=="Microsoft Internet Explorer" && parseInt(navigator.appVersion) >= 4 && navigator.platform.indexOf("Win") > -1)
{
window.external.AddFavorite(bookmark_url,text_description);
}

else
{
alert("For PC users, press the Control (Ctrl) key and the \"D\" key on your keyboard to bookmark this site. For Mac users, press the Command (Apple) key and the \"D\" key on your keyboard.");
}
}

function protect()
{
alert("This image is copyrighted!" + "\n\n" + "- Robert Hughes");
return false;
}

function showStatus(msg)
{
window.status=msg;
return true;
}

function showYear()
{
var n = new Date();
var y = n.getFullYear();
document.getElementById("year").innerHTML = y;
}