// Show / Hide social bookmarks
function wcmDisplay()
{var element = document.getElementById('wcmSocialBookmarks');
 if (element.style.display != 'block')element.style.display = 'block';
 else element.style.display = 'none';
}

// go to social bookmark url
function soshare(url)
{url = url.replace(/{url}/ig,encodeURIComponent(document.location.href));
 url = url.replace(/{title}/ig,encodeURIComponent(document.title));
 window.open(url,'socialbookmark','');
}
