﻿if (!window.player1)
	player1 = {};

player1.Page = function() 
{
}

player1.Page.prototype =
{
	handleLoad: function(control, userContext, rootElement) 
	{
		this.control = control;
		this.rootElement = rootElement;
		
		
		this.videoPlayer = new Framework(this.control, this.rootElement);
		this.videoPlayer.initiate();
		
		
		//this.videoPlayer.stopVideo();
    }

}