//********************************************************************************
// Social Bookmarks
// Copyright WebsiteCM Software Inc.
// All rights reserved.
// License: http://www.websitecm.com/downloads/license-agreement.pdf
//********************************************************************************
// Javascript
//********************************************************************************/

// Show / Hide social bookmark display
function wcmDisplay()
{
	var element = document.getElementById('wcmSocialBookmarks');
	if (element.style.display != 'block')
		element.style.display = 'block';
	else
		element.style.display = 'none';
}

// Pass url and title to social bookmark url
function wcmSocialBookmarksLink(url)
{
	url = url.replace(/{url}/ig,encodeURIComponent(document.location.href));
	url = url.replace(/{title}/ig,encodeURIComponent(document.title));
	window.open(url,'socialbookmark','');
}

