Sureflix.Page = {};

//Shorthand
SxPg = Sureflix.Page;

Sureflix.Page.reload = function (){
	window.location.href = this.getUrl();
}

Sureflix.Page.navigate = function(destination) {
	window.location.href = destination;
}

Sureflix.Page.getUrl = function() {
	return window.location.href;
}

