//********************************************************************************
// 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(c)
{

	try{
		if(c == 'Y' && $.browser.msie){
			var el = $('#wcmSocialBookmarks');
			if(el.css('display') == 'none' && el[0].parentNode.tagName.toLowerCase != 'body'){
				el.css({'opacity': 0, 'display': 'block'});
				el.css({'top': (el.offset().top + 'px'), 'left': (el.offset().left + 'px')});
				el.css({'display': 'none', 'opacity': 1});
				$('body').append(el);
			}
		}
	}catch(e){}

	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','');
}
