
function printPage() {
    var url;
    url = location.href;

    if (url.indexOf("?") == -1)
	    url += "?";

	url += "&Mode=print";

	window.open(url);
}

function addFavorite() {
	window.external.AddFavorite(location.href, document.title);
}

function mailTo() {
	window.location="mailto:?subject=" + document.title.replace(/\"/g, "''") + "&body=" + document.title.replace(/\"/g, "''") + " - " + document.location.href.replace(/&/g, "%26");
}

