function show(divs){
element = document.getElementById(divs);
if(element.style.display == "none"){
if(navigator.appName == "Microsoft Internet Explorer"){
element.style.display = "inline";
}
else{
element.style.display = "table-row";
}
element.style.visibility = "visible";
}
else{
element.style.display = "none";
element.style.visibility = "hidden";
}
}

function bookmarksite(url, title){
if (document.all){
window.external.AddFavorite(url, title);
} else {
try{
window.sidebar.addPanel(title, url, "");
}
catch(e){
alert('You will have to manually add the site to your FF bookmarks. Just press Ctrl + D.');
}
}
}

function setHomePage(url){
try{
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage(url);
}
catch(e){
alert('We are sorry but you will have to manually change your home page.');
}
}
