// Function that handles Add to Favorites/Bookmarks for both IE & FireFox
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

//This has nothing to do with favourites, it's an input form message script.
//Thought I would put it in here instead of messing with the site header.
//By Kyle
var input_defaultText = "Email Address...";
function hideDefaultText(id)
{
	var input = document.getElementById(id);
	if (input.value == input_defaultText)
	{
		input.value = "";
	}
}
function showDefaultText(id)
{
	var input = document.getElementById(id);
	if (input.value == "")
	{
		input.value = input_defaultText;
	}
}