﻿function onFullScreen(page){
	switch (page) {
		default:
		break;
	}
}
//////////////////////////////////////////////////////////////////////////
/// flash controls //////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
function muteSound() {
	getContainer().muteSound();
}
function unmuteSound() {
	getContainer().unmuteSound();
}
function callVideoOnDemand(md5) {
	getContainer().callVideoOnDemand(md5);
}
function callProgramOnDemand(md5) {
	getContainer().callProgramOnDemand(md5);
}
function setChannel(id) {
	getContainer().setChannel(id);
}
function nextChannel() {
	getContainer().nextChannel();
}
function prevChannel() {
	getContainer().prevChannel();
}
//////////////////////////////////////////////////////////////////////////
function pause() {
	getContainer().pause();
}
function resume() {
	getContainer().resume();
}
//////////////////////////////////////////////////////////////////////////
function getVideoArtist() {
	return getContainer().getVideoArtist();
}
function getVideoDuration() {
	return getContainer().getVideoDuration();
}
function getVideoInfo() {
	return getContainer().getVideoInfo();
}
function getVideoLinks() {
	return getContainer().getVideoLinks();
}
function getVideoOwner() {
	return getContainer().getVideoOwner();
}
function getVideoParental() {
	return getContainer().getVideoParental();
}
function getVideoThumb() {
	return getContainer().getVideoThumb();
}
function getVideoTitle() {
	return getContainer().getVideoTitle();
}
function getVideoYear() {
	return getContainer().getVideoYear();
}
checkLoaded('application');