﻿function showOptions(){
	if (document.getElementById("list")) {
		document.getElementById("list").style.display = "inline";
	}
}

function hideOptions(){
	if (document.getElementById("list")) {
		document.getElementById("list").style.display = "none";
	}
}

var title = "Maple Valley Chamber of Commerce";
var url = "http://mvcoc.efelledemos.com";

function addToFavorites() {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
}