<!-- 

function playMedia(mediaURL,rpt,height,width) {


var mediaURL,rpt,height,width


if (GetBrowser() == "IE")
	embedSource(mediaURL,rpt,height,width) ;  
else if (GetBrowser() == "unknown")
	embedSource(mediaURL,rpt,height,width) ;
else if (navigator.appName.substring(0,5) == "WebTV")
	embedSource(mediaURL,rpt,height,width) ;
else
	embedSource(mediaURL,rpt,height,width) ;  
	//playAll(mediaURL,rpt,height,width) ;
}

function embedSource(mediaURL,rpt,height,width) {

    var CodeGen = ""
    var mediaURL,rpt,height,width
 		 	
	CodeGen = '<embed src="' + mediaURL + '"' + '\n' ;
	CodeGen += ' height=' + height + ' width=' + width + ' autostart="true"' + '\n'
	CodeGen += ' LOOP=' + rpt + '>'
	 
	document.getElementById('Soundplatzhalter').innerHTML = CodeGen 

}

function playAll(mediaURL,rpt,height,width) {

		var CodeGen = "" 

		CodeGen = '<embed type="application/x-mplayer2" ' + '\n' ;
    	CodeGen += ' pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" ' + '\n' ;
	 	CodeGen += 'Name="Player" ' + 'src="' + mediaURL + '" ' + '\n' ;
	 	CodeGen += 'autoStart=1 ' ;
		if ((height == 24) && (width == 299)) 
			CodeGen = CodeGen + 'ShowStatusBar=1 '; 
		if ((height >= 50) && (height <= 75) && (width >= 200)) 
			CodeGen = CodeGen + 'ShowStatusBar=1 '; 
		if ((height > 75) && (width >= 150)) 
			CodeGen = CodeGen + 'ShowStatusBar=0 '; 
		if ((height <= 49) && (width != 299))
			CodeGen += 'ShowStatusBar=0 '; 
		CodeGen += 'enableContextMenu=1 cache=0 ' + '\n' ;
		CodeGen += 'playCount=' + rpt + ' ' ;
		CodeGen += 'volume=5 ' ;
		CodeGen += 'HEIGHT=' + height + ' WIDTH=' + width + '>'
			
		document.getElementById('Soundplatzhalter').innerHTML = CodeGen 
	
}

function GetBrowser()
{
   var agt=navigator.userAgent.toLowerCase();
   if( ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1)) )
       return "IE";
   else if( ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
         && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
         && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1)) )
       return "Netscape";
   else
       return "unknown";
}

function MM_swapImgRestore() {
	var i,x,a=document.MM_sr;
	for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_swapImage() {
	var i,j=0,x,a=MM_swapImage.arguments;
	document.MM_sr=new Array;
	for(i=0;i<(a.length-2);i+=3)
		if ((x=MM_findObj(a[i]))!=null) {
			document.MM_sr[j++]=x;
			if(!x.oSrc) x.oSrc=x.src;
			x.src=a[i+2];
		}
}

function MM_findObj(n, d) {
	var p,i,x;
	if(!d) d=document;
	if((p=n.indexOf("?"))>0&&parent.frames.length) {
		d=parent.frames[n.substring(p+1)].document;
		n=n.substring(0,p);
	}
	if(!(x=d[n])&&d.all) x=d.all[n];
	for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	if(!x && d.getElementById) x=d.getElementById(n);

	return x;
}

//-->

