function swish(idname) {
	var id = idname;
	if (id == "b1")
	{
			document.getElementById("b1").style.display = "block";
			document.getElementById("b2").style.display = "none";
	}
	else if (id == "b2")
	{
			document.getElementById("b2").style.display = "block";
	}
}
function bookmarksite(title, url){
	if (document.all)
	window.external.AddFavorite(url, title);
	else if (window.sidebar)
	window.sidebar.addPanel(title, url, "")
}
function toggle( targetId )
{
	if (document.getElementById)
	{
		target = document.getElementById( targetId );
		if (target.style.display == "none")
		{
			target.style.display = "";
		}
		else
		{
			target.style.display = "none";
		}
	}
}
function m( targetId )
{
	if (document.getElementById)
	{
		target = document.getElementById( targetId );
		if (target.style.display == "none")
		{
			target.style.display = "block";
		}
	}
}
function d( targetId )
{
	if (document.getElementById)
	{
		target = document.getElementById( targetId );
		if (target.style.display == "block")
		{
			target.style.display = "none";
		}
	}
}