﻿function initPlayer(mode,width,height,stream) {
	//stream+='&displaywidth='+width+'&'+displayheight='+height;
	switch (mode) {
		case 'mediaplayer' : 	
			//document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="'+stream+'" width="'+width+'" height="'+height+'" name="MediaPlayer" autostart="True" ShowStatusBar=1 ShowControls=1></embed>');		
			document.write('<object classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95"'+'type="application/x-oleobject" width="'+width+'" height="'+height+'">'+'<param name="showControls" value="true"><param name="autoStart" value="false">'+'<param name="fileName" value="'+stream+'">'+'<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" width="'+width+'" height="'+height+'"'+' showcontrols="true" autostart="false" src="'+stream+'"><\/embed><\/object>');
			break;
		case 'flashplayer' : 
			document.write('<object type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" wmode="transparent" data="'+stream+'">');
				//document.write('<param name="skin"				value="/_ACC/_components/ATLANTIS-digistore/Players/snel.swf"/>');
  		  		document.write('<param name="allowfullscreen" 	value="true"/>');
  		  		document.write('<param name="movie" 			value="'+stream+'"/>');
    		    document.write('<param name="flashvars" 		value="'+stream+'"/>');
    			document.write('<param name="wmode" 			value="transparent"/>');
   		    	document.write('<param name="menu" 				value="0"/>');
    		document.write('</object>');
			break;
	}
}	



