function CreateBookmarkLink(centre) {

	var title = centre.replace("CIC", "Citizens Information Centre"); 
	var url = "http://centres.citizensinformation.ie/centre.php?cic=" + escape(centre);

	if (window.sidebar) // Mozilla Firefox "Bookmark Page"
		document.write('<a href=\"javascript:window.sidebar.addPanel(\'' + title + '\', \'' + url + '\',\'\')\"><img src=\"/images/favourites_icon.jpg\" alt=\"Add to Favourites\" border=\"0\"></a>');
	else if( window.external ) // IE "Add to Favorites"
		document.write('<a href=\"javascript:window.external.AddFavorite(\'' + url + '\', \'' + title + '\')\"><img src=\"/images/favourites_icon.jpg\" alt=\"Add to Favourites\" border=\"0\"></a>');
	else if(window.opera && window.print) // Opera "Add Bookmark"
		document.write('<a href=\"' + url + '\" title=\"' + title + '\" rel=\"sidebar\"><img src=\"/images/favourites_icon.jpg\" alt=\"Add to Favourites\" border=\"0\"></a>');
}

function unload()
{
	GUnload();
	
	// mapdiv = document.getElementById("mapframe");
	
	// if (mapdiv != null) 
		// mapdiv.parentNode.removeChild(mapdiv);
	// else
		// mapdiv = document.getElementById("map");
		
	// if (mapdiv != null) 
		// mapdiv.parentNode.removeChild(mapdiv);
}

function load()
{
	// hide the header & footer if necessary
	if (window.top != window)
	{
		document.getElementById('content').style.marginleft = '0';
		document.getElementById('content').style.marginright = '0';
	}
	
	// Load the Map
	MapLoad();
}


