// 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 = ""; // 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";
		controllerHt = 40;
	} else { // Use MIME type audio/mpeg, audio/x-wav, etc.
		visitorOS="Other";
		controllerHt = 16;
	}
	
	var audioURL = audioFolder + MP3URL;
	var objTypeTag = "application/x-mplayer2"; // The MIME type to load the WMP plugin in non-IE browsers on Windows
	mimeType = "audio/mpeg"; // The MIME type for Macs and Linux
	
	var theExtension = MP3URL.substr(MP3URL.lastIndexOf('.')+1, 3); // truncates .aiff to aif
	if (theExtension.toLowerCase() == "wav") { mimeType = "audio/x-wav"};
	if (theExtension.toLowerCase() == "aif") { mimeType = "audio/x-aiff"}; 
	if (theExtension.toLowerCase() == "wma") { mimeType = "audio/x-ms-wma"};
	if (theExtension.toLowerCase() == "mid") { mimeType = "audio/mid"};
	// Add additional MIME types as desired
	  
	if (visitorOS != "Windows") {
		objTypeTag = mimeType;
	};
	
	document.write("<div>");
	document.write("<object width='170' height='" + controllerHt + "'>\n"); // Width is the WMP minimum. Height = 45 (WMP controls) + 24 (WMP status bar) 
	document.write("<param name='type' value='" + objTypeTag + "'>\n");
	document.write("<param name='src' value='" + audioURL + "'>\n");
	document.write("<param name='autostart' value='0'>\n");
	document.write("<param name='ShowControls' value='1'>\n");
	document.write("<param name='ShowStatusBar' value='false'>\n");
	document.write("<param name='uiMode' value='mini'>\n");
	document.write("<embed src ='" + audioURL + "' type='" + objTypeTag + "' autoplay='false' autostart='0' width='170' height='" + controllerHt + "' controller='1' showstatusbar='0' uimode='mini' bgcolor='#ffffff'></embed>"); 
	
	// Firefox and Opera Win require both autostart and autoplay
	document.write("</object>\n");
	document.write("</div>\n");
	document.close(); // Finalizes the document
}
