var player = null;
function createPlayer(theContainer, theFile, go) {
	var cnt = document.getElementById(theContainer);
	var src = "js-css/wmvplayer.xaml";
var cfg = {
		height:'350',width:'699',
		backcolor:'9a8652',frontcolor:'000000',lightcolor:'ffffff',screencolor:'9a8652',
		volume:'50',logo:'',link:'',
		windowless:'true',showstop:'true',linkfromdisplay:'false',image:'',overstretch:'false',
		file:theFile, autostart:go};
	player = new jeroenwijering.Player(cnt,src,cfg);
}
function init() {
	createPlayer();
}
