
function addbookmark(url,title) {
	if (document.all) {
		window.external.AddFavorite(url,title)
	}
}

function emailPage(url) {
	theEmail = prompt("Enter the recipients email address:");
	theSubject = 'Checkout this page at ESW!';
	theBody = url;
	window.location.href='mailto:'+theEmail+'?subject='+theSubject+'&body='+theBody;
}