//כפתור לייק בכל דף תוכן
function facebookLike(id, site){
	var flagHebrew=false;
	var thisPage='';

	thisPage=window.location.href;
	thisPage=decodeURI(thisPage);

	for (i=0; i<thisPage.length; i++){
		if ((thisPage.charAt(i)<="ת" && thisPage.charAt(i)>="א")){
			flagHebrew=true;
		}
	}

	if (flagHebrew){
		thisPage=site;
	}

	document.write('<iframe src="http://www.facebook.com/plugins/like.php?href='+thisPage+'&amp;layout=standard&amp;show_faces=false&amp;width=290&amp;action=like&amp;colorscheme=light&amp;height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:290px; height:35px;" allowTransparency="true"></iframe>');
}
