var player = null;
function createPlayer(theContainer, theFile, go) {
	var cnt = document.getElementById(theContainer);
	var src = "js-css/wmvplayer.xaml";
var cfg = {
		height:'320',width:'400',
		backcolor:'000099',frontcolor:'FFFFFF',lightcolor:'6666FF',screencolor:'FFFFFF',
		volume:'35',logo:'false',link:'http://www.newhopeforever.com/index.html',
		windowless:'true',showstop:'true',linkfromdisplay:'true',image:'/media/images/christmas.jpg',overstretch:'false',
		file:theFile, autostart:go};
	player = new jeroenwijering.Player(cnt,src,cfg);
}
function init() {
	createPlayer();
}