handleShadowBoxOpen = function(obj)
{//handleShadowBoxOpen
	var swf = getSWF();
	if(swf != null)
	{//call
		swf.onShadowBoxOpen();
	}//call
}//handleShadowBoxOpen

handleShadowBoxClose = function(obj)
{//handleShadowBoxClose
	var swf = getSWF();
	if(swf != null)
	{//call
		swf.onShadowBoxClose();
	}//call
}//handleShadowBoxClose

openLikeBox = function()
{//openLikeBox
	Shadowbox.open({
		content: '<iframe src="http://www.facebook.com/plugins/likebox.php?id=106749192712698&amp;width=292&amp;connections=0&amp;stream=false&amp;header=false&amp;height=60" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:65px;" allowTransparency="true"></iframe>',
		player: "html",
		title: "Like Page",
		width: "350",
		height: "260"
	});
}//openLikeBox

closeShadowBox = function()
{//closeShadowBox
	Shadowbox.close();
}//closeShadowBox

openShadowbox = function(innerContent, playerType, overlayTitle, overlayWidth, overlayHeight)
{//openShadowbox
	safeLog("Open Shadow Box Start");
	Shadowbox.open({
		content: innerContent,
		player: playerType,
		title: overlayTitle,
		width: overlayWidth,
		height: overlayHeight
	});
	safeLog("Open Shadow Box End");
}//openShadowbox

///// SETUP SHADOWBOX \\\\\
Shadowbox.init({
				skipSetup: true,
				troubleElements:{},
				onClose: handleShadowBoxClose,
				onOpen: handleShadowBoxOpen
				});
