function CreateBookmark() {
	/* #########################################
	#	TERMINALFOUR: Add site to Favourites (IE Only)
	######################################### */

	if (window.external && !window.sidebar) {
		// For Internet Explorer ONLY
		window.external.AddFavorite(location.href, document.title);
	} else {
		// All Other Browsers - Popup Alert [CTRL D]
		alert('Please Press Ctrl + D to bookmark this page');
	}
}

function emailThisPage() {
	/* #########################################
	#	TERMINALFOUR: Email This Page
	######################################### */

	var page_url = location.href;
	location.href = "mailto:?subject="+ document.title +"&body="+ page_url +"";
}
