
function showFbPage(stream) {
	var ww = 0;
	if (typeof(window.innerWidth) == 'number') {
		ww = window.innerWidth;
	} else if (document.documentElement && document.documentElement.clientWidth) {
		ww = document.documentElement.clientWidth;
	} else if (document.body && document.body.clientWidth) {
		ww = document.body.clientWidth;
	} else {
	    ww = 1000;
	}
    var cc = Math.floor((ww - 2*10 - 30) / 55);
    var iframe = document.getElementById('socnet');
    var width = cc * 55 + 2*10;
    var height = 65 + (cc ? 24 + 70 : 0) + (stream ? 140 : 0) + 25;
	var url = "http://www.facebook.com/plugins/likebox.php?id=183073661720204";
	url += "&connections=" + cc;
	url += "&width=" + width;
	url += "&height=" + height;
	url += "&locale=en_US";
	url += "&header=false&stream=" + (stream ? "true" : "false");
	var tags = '<center>';
	tags += '<iframe id="socnet" src="' + url.replace(/&/g,'&amp;') + '"';
	tags += ' width="' + width + '" height="' + height + '" scrolling="no" frameborder="0"';
	tags += ' style="border:none; overflow:hidden; margin-top:8px; margin-bottom:8px;">';
	tags += '</iframe></center>';
	document.write(tags);
}

