

function addBookmark1()
{
var bookmark_url="http://theorniphile.info/add_favorites_guide/index.html";
var text_description="How to Create a Bookmark Link For Your Web site";
window.external.AddFavorite(bookmark_url,text_description);
}

function addBookmark2()
{
var bookmark_url="http://theorniphile.info/add_favorites_guide/index.html";
var text_description="How to Create a Bookmark Link For Your Web site";
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 n = new Date();
var y = n.getFullYear();
document.getElementById("year").childNodes[0].nodeValue = y;
}
