
var swScript = document.createElement('script');
swScript.src = 'http://www.dreamsoft.no/dreamsoft/webTVD/player/swfobject.js';
document.documentElement.appendChild(swScript);

playerInit = function() {
	var flashvars = {
		file: 'http://www.dreamsoft.no/users/carbiden/blues2010.flv',
		image: 'http://www.dreamsoft.no/dreamsoft/webTVD/player/webTVDlogoBig.png',
		stretching: 'fit',
		resizing: 'true',
		'logo.file':'http://www.dreamsoft.no/dreamsoft/webTVD/player/webtvdlogo.png',
		'logo.hide': 'true',
		'logo.position':'top-right',
		'autostart': 'true',
		'logo.link':'http://www.dreamsoft.no'
	}
	
	var params = {
		allowfullscreen:'true',
		allowscriptaccess:'always'
	}
	
	var attributes = {}
	
	swfobject.embedSWF('http://www.notoddenminby.no/lib/flash/flashplayer.swf', 'webTvdPlayer', '657','394','9', false, flashvars, params, attributes)
}
if(document.all)
	setTimeout(playerInit, 1000);
else
	swScript.onload = playerInit;
	

