﻿mkFacebookPlugins = function(){};

mkFacebookPlugins.writeLikeButton = function()
{
	var strHref = window.location.protocol + '//' + window.location.host + window.location.pathname;
	if (Url.getParameter('ArticleID') != '')
		strHref += '?ArticleId=' + Url.getParameter('ArticleId');	
	
	document.write('<fb:like show_faces="false" width="320" font="lucida grande" ref="fblike" href="' + strHref + '"></fb:like>');
}

mkFacebookPlugins.writeLikeButtonSmall = function()
{
	var strHref = window.location.protocol + '//' + window.location.host + window.location.pathname;
	if (Url.getParameter('ArticleID') != '')
		strHref += '?ArticleId=' + Url.getParameter('ArticleId');	

	document.write('<fb:like show_faces="false" layout="button_count" width="100" font="lucida grande" ref="fblike" href="' + strHref + '"></fb:like>');
}
