//<!---
//Filename: mediaplayer.js
//Purpose: plays mp3's in popup window
//Created by: Christopher Yates
//Created date: October 25, 2008
//Last revised by: Christopher Yates
//Last revision date: October 27, 2008
//Notes: code is hacked together from: 
//       http://www.streamalot.com/wm-embed.shtml and 
//       http://digitalmedia.oreilly.com/2006/05/31/build-a-better-web-audio-player.html
//--->

// Pop-Up Embedder Script by David Battino, www.batmosphere.com
// Version 2006-05-31  
// OK to use if this notice is included
   
function mediaplayer(filedesc,filepath,WindowNumber) 
{

   PlayerWin = window.open('',WindowNumber,           'width=340,height=190,top=0,left=0,screenX=0,screenY=0,resizable=0,scrollbars=0,titlebar=0,toolbar=0,menubar=0,status=0,directories=0,location=0');
   PlayerWin.focus();
   PlayerWin.document.writeln("<html>");
   PlayerWin.document.writeln("<head>"); 
   PlayerWin.document.writeln("<title>");
   PlayerWin.document.writeln("The Travis Turner Sports Show");
   PlayerWin.document.writeln("</title>");
	PlayerWin.document.writeln("</head>");
   PlayerWin.document.writeln("<body bgcolor='#0C7904'>");
   PlayerWin.document.writeln("<img src='/images/ttsswindow.jpg' width='320' height='23' /><br />");
   PlayerWin.document.writeln("<div align='center'>");
   PlayerWin.document.writeln("<b style ='color:#FFFF02;font-size:18px;font-family:Trebuchet MS,sans-serif;line-height:1.6'>");
   PlayerWin.document.writeln(filedesc);
   PlayerWin.document.writeln("</b>");
   PlayerWin.document.writeln("<br />");
   PlayerWin.document.writeln("<object id='MediaPlayer1' classid='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' type='application/x-oleobject'>");
   PlayerWin.document.writeln("<param name='FileName' value='" + filepath + "'>");
   PlayerWin.document.writeln("<param name='AutoStart' value='True'>");
   PlayerWin.document.writeln("<param name='ShowStatusBar' value='True'>"); 
	PlayerWin.document.writeln("<param name='width' value='280'>");
	PlayerWin.document.writeln("<param name='height' value='69'>");
   PlayerWin.document.writeln("<embed type='application/x-mplayer2' pluginspage = 'http://www.microsoft.com/Windows/MediaPlayer/' src='" + filepath + "' showstatusbar='1' autoplay='true' controller='1' bgcolor='#0C7904' kioskmode='true' width='280' height='69'>");
   PlayerWin.document.writeln("</embed>");
   PlayerWin.document.writeln(" ");
	PlayerWin.document.writeln(" ");
   PlayerWin.document.writeln("</object>");
   PlayerWin.document.writeln("</div>");
   PlayerWin.document.writeln("<form>");
   PlayerWin.document.writeln("<div align='center'>");
   PlayerWin.document.writeln("<input type='button' value='Close this window' onclick='javascript:window.close();'>");
   PlayerWin.document.writeln("</div>");
   PlayerWin.document.writeln("</form>");
   PlayerWin.document.writeln("</body>");
   PlayerWin.document.writeln("</html>");
	
	
   PlayerWin.document.close(); // "Finalizes" new window
}

