function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

function showHide(id){
	var table = document.getElementById(id);
	if (table.style.display == "none") table.style.display = "block";
	else table.style.display = "none";
}
