// JavaScript Document

//Original Loader
function loader(url, name, width, height){


	var left = Math.floor( (screen.width - width) / 2);
	var top = Math.floor( (screen.height - height) / 2);
	var myOptions = "'toolbar=no, location=no, scrollbars=yes, resizable=yes, width=" + width + ",height=" + height +",top=" + top + ", left=" + left + "'";

	myPop = window.open(url, name, myOptions);
	if(window.focus){myPop.focus()};
	//window.open("player.html", "player", "toolbar=no, status=no, menubar=no, scrollbars=no, resizable=no, width=955, height=690");
}
