function showSBWdgt(divId){
	document.getElementById(divId).style.visibility = 'visible';
}
function hideSBWdgt(divId){
	document.getElementById(divId).style.visibility = 'hidden';
}
function openSBWdgtLinks(socialUrl)
{
	var sbLink = socialUrl.replace("THE_PAGE_URL",window.location.href);			
	sbLink = sbLink.replace("THE_PAGE_TITLE",document.title);			
	window.open(sbLink);
}
