<!--
function JSputPlayer(soundFile, bgcolor, btncolor, txtColor, sldcolor, loadercolor){
    var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
    if(hasRightVersion) {
         var html='';
          html+='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" type="application/x-shockwave-flash" alt="inline flash player" title="listen on page" height="20" width="100">';
          html+='<param name="movie" value="/scripts/pl.swf"/>';
          html+='<param name="flashvars" value="soundFile='+soundFile+'&bgcolor=0x'+bgcolor+'&btncolor=0x'+btncolor+'&txtColor=0x'+txtColor+'&sldcolor=0x'+sldcolor+'&loadercolor=0x'+loadercolor+'"/>';
          html+='<param name="bgcolor" value="'+bgcolor+'" />';			  
          html+='<embed src="/scripts/pl.swf"';
          html+='  quality="high"';
          html+='  bgcolor="#'+bgcolor+'"';
          html+='  width="100" height="20"';
		  html+='  type="application/x-shockwave-flash"';
		  html+='  flashvars="soundFile='+soundFile+'&bgcolor=0x'+bgcolor+'&btncolor=0x'+btncolor+'&txtColor=0x'+txtColor+'&loadercolor=0x'+loadercolor+'"';
          html+='/>';
        html+='</object>';
        document.write(html);
    }
    else
    {
         var html='';
         html += '<div> <div style="border:1px solid #900000; background-color:#ffffff;  color:#333;  padding:3px; align:center;"  ><img src="/images/flash_rune_b.gif" width="47" height="47" hspace="8" vspace="1" alt="" border="0"  style="float:left;" ><p style="margin:5px; font-size:10pt;"><strong style="color:#cc0000; ">If you see this message you have problems viewing the FLASH.</strong></p><p   style="font-size:10pt;">We recommend you to install the latest (version 9.0)<a class="c" href="http://www.adobe.com/go/getflashplayer" target="_blank"><span style="color:#cc0000; text-decoration:underline;"> Adobe Flash Player.</span></a> <br>Java Script must be enabled!</div></p></div>';
        document.write(html);
    }
   
}    
function JSputPlayer2(elementId, soundFile, bgcolor, btncolor, txtColor, sldcolor, loadercolor){
    var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
    if(hasRightVersion) {
         var html='';
          html+='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" type="application/x-shockwave-flash" alt="inline flash player" title="listen on page" height="20" width="100">';
          html+='<param name="movie" value="/scripts/pl.swf"/>';
          html+='<param name="flashvars" value="soundFile='+soundFile+'&bgcolor=0x'+bgcolor+'&btncolor=0x'+btncolor+'&txtColor=0x'+txtColor+'&sldcolor=0x'+sldcolor+'&loadercolor=0x'+loadercolor+'"/>';
          html+='<param name="bgcolor" value="'+bgcolor+'" />';			  
          html+='<embed src="/scripts/pl.swf"';
          html+='  quality="high"';
          html+='  bgcolor="#'+bgcolor+'"';
          html+='  width="100" height="20"';
		  html+='  type="application/x-shockwave-flash"';
		  html+='  flashvars="soundFile='+soundFile+'&bgcolor=0x'+bgcolor+'&btncolor=0x'+btncolor+'&txtColor=0x'+txtColor+'&loadercolor=0x'+loadercolor+'"';
          html+='/>';
        html+='</object>';
        document.getElementById(elementId).innerHTML = html;
    }
    else
    {
         var html='';
         html += '<div> <div style="border:1px solid #900000; background-color:#ffffff;  color:#333;  padding:3px; align:center;"  ><img src="/images/flash_rune_b.gif" width="47" height="47" hspace="8" vspace="1" alt="" border="0"  style="float:left;" ><p style="margin:5px; font-size:10pt;"><strong style="color:#cc0000; ">If you see this message you have problems viewing the FLASH.</strong></p><p   style="font-size:10pt;">We recommend you to install the latest (version 9.0)<a class="c" href="http://www.adobe.com/go/getflashplayer" target="_blank"><span style="color:#cc0000; text-decoration:underline;"> Adobe Flash Player.</span></a> <br>Java Script must be enabled!</div></p></div>';
         document.getElementById(elementId).innerHTML = html;
    }
} 
// -->