<!-- 
// This script determines correct code required to embed MEDIA files 
// for a large number of browsers, including AOL and WebTV
// Windows Media Player is required and always used, except for WebTV
// Written by Les Gorven, http://midistudio.com/ 
// Ver. 4.0 (simple) auto-start parameter is true - Created: February 2, 2008
var mediastart1 = 'true';
var mediastart2 = '1';
function playMedia(container,mediaURL,rpt,height,width) {


var mediaURL,rpt,height,width


if (GetBrowser() == "IE")
	playAll(container,mediaURL,rpt,height,width) ;  
else if (GetBrowser() == "unknown")
	embedSource(container,mediaURL,rpt,height,width) ;
else if (navigator.appName.substring(0,5) == "WebTV")
	embedSource(container,mediaURL,rpt,height,width) ;
else
	playAll(container,mediaURL,rpt,height,width) ;
}

function embedSource(container,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 + '>'
	$(container).html(CodeGen);
	
}

function playAll(container,mediaURL,rpt,height,width) {
		var CodeGen = "" 
					 	
        CodeGen = "<OBJECT id='streamPlayer' CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' type='application/x-oleobject' width='"+width+"' height='"+height+"'>";	
        CodeGen += "<PARAM NAME='URL' VALUE='"+mediaURL+"'>"
        CodeGen += "<PARAM NAME='SendPlayStateChangeEvents' VALUE='True'>"
        CodeGen += "<PARAM NAME='AutoStart' VALUE='"+mediastart2+"'>"
        //CodeGen += "<PARAM name='uiMode' value='none'>"
        CodeGen += "<PARAM name='PlayCount' value='9999'>"
        if ((height == 24) && (width == 299)) 
			CodeGen += "<PARAM name='ShowStatusBar' value='true'>"
	    if ((height >= 50) && (height <= 75) && (width >= 200))
			CodeGen += "<PARAM name='ShowStatusBar' value='true'>"
		if ((height > 75) && (width >= 150))
			CodeGen += "<PARAM name='ShowStatusBar' value='0'>" 
		if ((height <= 49) && (width != 299))
			CodeGen += "<PARAM name='ShowStatusBar' value='0'>"
		CodeGen += "<PARAM name='Width' value='"+width+"'>"
	    CodeGen += "<PARAM name='Height' value='"+height+"'>"
        CodeGen += "</OBJECT>"			
		$(container).html(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";
}

//-->
