var gPLAYER_CLICK_ENABLED = false;

function player_click_init()
{
	gPLAYER_CLICK_ENABLED = true;
}

function player_click_shutdown()
{
	gPLAYER_CLICK_ENABLED = false;
}

function onPlayerClick(pButton, pShiftState, pX, pY)
{
	if (!gPLAYER_CLICK_ENABLED)
		return;
		
	var associatedURL = player.player_GetASXParameterValue("CastUP_AssociatedURL");
	
	if (associatedURL != null)
	{
		if (associatedURL.length > 0)
		{
			window.open(associatedURL, "_blank", "location=1,menubar=1,toolbar=1,status=1,resizable=1");
		}
	}
}
