var img1 = new Image(234, 252)
img1.src = "monarch_part1_alt.jpg";
var img2 = new Image(166, 252)
img2.src = "monarch_part2_alt.jpg";
var img3 = new Image(400, 48)
img3.src = "monarch_part3_alt.jpg";

function protect()
{
alert("This image is copyrighted!");
return false;
}

function imgSwap(elem, img_name)
{
document.getElementById(elem).src=img_name;
}

function addBookmark()
{
var bookmark_url="http://theorniphile.info/image_protection_guide/index.html";
var text_description="How to Protect Your Web page Images";
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) and \"D\" keys on your keyboard to bookmark this site. For Mac users, press the Command (Apple) and \"D\" keys on your keyboard.");
}
}

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

function backToTop()
{
window.scrollTo(0, 0);
}

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