// JavaScript Document

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}

function returnText_search(thefield){
if (thefield.value=="")
thefield.value = "search"
}

function returnText_subscibe(thefield){
if (thefield.value=="")
thefield.value = "name@address.com"
}


//===================================
// Adds page to Favorite
//===================================
function addToFavorites(pageName, urlAddress) 
{ 
	if (window.sidebar) 
	{ // Mozilla Firefox Bookmark
		window.sidebar.addPanel(pageName, urlAddress,"");
	} 
	else if( window.external ) 
	{ // IE Favorite
		window.external.AddFavorite(urlAddress, pageName); 
	}
	else if(window.opera && window.print) 
	{ // Opera Hotlist
		var elem = document.createElement('a');
		elem.setAttribute('href',urlAddress);
		elem.setAttribute('title',pageName);
		elem.setAttribute('rel','sidebar');
		elem.click();
	}
	else
	{ // Other Browsers
		alert("Sorry. Your browser doesn't support this feature. Hold Crtl-D to add bookmark.");
	}
}

//=====================================
// Closes the status message summary
//=====================================
function closeStatusMessage()
{
	document.getElementById("Status-Msg").style.display = "none";
}