function mover(id)
{
	if (browser.ie4 || browser.ie5 || browser.ns6)
		document.getElementById(id).style.backgroundColor="#FFFFFF";
}

function mout(id)
{
	if (browser.ie4 || browser.ie5 || browser.ns6)
			document.getElementById(id).style.backgroundColor="#C0C0C0";
}

function bookmark(url, description)
{
	if (navigator.appName=='Microsoft Internet Explorer')
		window.external.AddFavorite(url, description);
	else if (navigator.appName=='Netscape')
		alert("Im afraid you'll have to manually Bookmark Us !");
		
	return false;
}