function egtv_DoFSCommand( command, args )
{
	var egtv = $( "telly" );
	if( command == "size" )
	{
		if (args == "large")
		{
			egtv.style.width = "673px";
			egtv.style.height = "560px";
		}
		else if( args == "normal" )
		{
			egtv.style.width = "480px";
			egtv.style.height = "400px";
		}
	}
}

function toggleVisibility( objID )
{
	obj =  $( objID );

	if(obj)
	{
		if( obj.style.display == "none" )
		{
			obj.style.display = "block";
		}
		else
		{
			obj.style.display = "none";
		}
	}
}

function rateVideo(rating, pid)
{
	var superAjax =	new
		Ajax.Updater(
			"video-rating",
			"tv_response.php",
			{
				method: 'get',
				parameters: "message=rate&playlist_id=" + pid + "&rating=" + rating
			}
		);

	if($("rating-selector"))
	{		
		Effect.Fade("rating-selector", { duration: 1.0 });
	}

	return false;
}
