// Batmosphere Embedded Media Player, version 2006-05-31
// Written by David Battino, www.batmosphere.com
// OK to use if this notice is included
// This function reads an MP3 URL and title from the referring page and generates embedding code to play back the audio file.
// Windows browsers (except for Internet Explorer) will play back the file with the Windows Media Player *plugin.* Internet Explorer will use Windows Media Player.
// Non-Windows browsers will play back the file with their standard audio handler for the MIME type audio/mpeg. On Macs, that handler will usually be QuickTime.

var audioFolder = "podcasts/"; // If you have a default audio directory, e.g., http://www.your-media-hosting-site.com/sounds/, you can put it here to make links on the referring page shorter.

function embedPlayer(MP3title,MP3URL) {
   // Get Operating System
   var isWin = navigator.userAgent.toLowerCase().indexOf("windows") != -1;
   if (isWin) { // Use MIME type application/x-mplayer2
      visitorOS="Windows";
   } else { // Use MIME type audio/mpeg, audio/x-wav, etc.
      visitorOS="Other";
   }

   var audioURL = audioFolder + MP3URL;
   var objTypeTag = "application/x-mplayer2"; // The MIME type to load the WMP plugin in non-IE browsers on Windows
   if (visitorOS != "Windows") { objTypeTag = "audio/mpeg"}; // The MIME type for Macs and Linux
   document.writeln("<table border='0' cellpadding='6' cellspacing='0' class='podcast_layout'><tr><td><img src='/podcasts/podcast_title1.gif' border='0'>");
   document.writeln("<div class='podcast_box'>");
   document.writeln("<div class='podcast_title'>" + MP3title + "</div>");  // Adjust font style to taste
   document.writeln("<object width='280' height='69'>"); // Width is the WMP minimum. Height = 45 (WMP controls) + 24 (WMP status bar)
   document.writeln("<param name='type' value='" + objTypeTag + "'>");
   document.writeln("<param name='src' value='" + audioURL + "'>");
   document.writeln("<param name='autostart' value='0'>");
   document.writeln("<param name='showcontrols' value='1'>");
   document.writeln("<param name='showstatusbar' value='1'>");
   document.writeln("<embed src ='" + audioURL + "' type='" + objTypeTag + "' autoplay='false' autostart='0' width='280' height='69' controller='1' showstatusbar='1' bgcolor='#CAD9C6'></embed>");
	document.writeln("</object>");
	 document.writeln("</div>");
	document.writeln("<br>Download this audio file to your computer:<br><span style='font-weight:normal;'><img src='/podcasts/podcast_icon.gif' border='0' align='absmiddle'> <a href=" + audioURL + " target='_blank'>" + audioURL + "</a></span></td><td class='podtxt'><strong>What is a Podcast?</strong><br><br><span style='font-weight:normal;'>A podcast is a digital media file that is distributed over the Internet for playback on portable media players and personal computers. You can listen to a podcast directly on the website or you can download them to your computer. Once you download the podcast you can listen to it on your computer, or transfer it to an mp3 player, such as an iPod.</span></td></tr></table>");

   // Firefox and Opera Win require both autostart and autoplay



}





function embedTeensPlayer(MP3title,MP3URL) {
   // Get Operating System
   var isWin = navigator.userAgent.toLowerCase().indexOf("windows") != -1;
   if (isWin) { // Use MIME type application/x-mplayer2
      visitorOS="Windows";
   } else { // Use MIME type audio/mpeg, audio/x-wav, etc.
      visitorOS="Other";
   }

   var audioURL = audioFolder + MP3URL;
   var objTypeTag = "application/x-mplayer2"; // The MIME type to load the WMP plugin in non-IE browsers on Windows
   if (visitorOS != "Windows") { objTypeTag = "audio/mpeg"}; // The MIME type for Macs and Linux
   document.writeln("<table border='0' cellpadding='6' cellspacing='0' class='podcast_layout' style='width:280px;'><tr><td><img src='/podcasts/podcast_title1.gif' border='0'>");
   document.writeln("<div class='podcast_box'>");
   document.writeln("<div class='podcast_title'>" + MP3title + "</div>");  // Adjust font style to taste
   document.writeln("<object width='280' height='69'>"); // Width is the WMP minimum. Height = 45 (WMP controls) + 24 (WMP status bar)
   document.writeln("<param name='type' value='" + objTypeTag + "'>");
   document.writeln("<param name='src' value='" + audioURL + "'>");
   document.writeln("<param name='autostart' value='0'>");
   document.writeln("<param name='showcontrols' value='1'>");
   document.writeln("<param name='showstatusbar' value='1'>");
   document.writeln("<embed src ='" + audioURL + "' type='" + objTypeTag + "' autoplay='false' autostart='0' width='280' height='69' controller='1' showstatusbar='1' bgcolor='#CAD9C6'></embed>");
	document.writeln("</object>");
	 document.writeln("</div>");
	document.writeln("<br>Download this audio file to your computer:<br><img src='/podcasts/podcast_icon.gif' border='0' align='absmiddle'> <a href=" + audioURL + " target='_blank'>" + audioURL + "</a></td></tr></table>");

   // Firefox and Opera Win require both autostart and autoplay



}