﻿// 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(container, 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 

var theObject = document.createElement('object');
theObject.width = '280';
theObject.height = '69';

param = document.createElement('param');
param.name = 'type';
param.value = objTypeTag;
theObject.appendChild(param);

param = document.createElement('param');
param.name = 'src';
param.value = audioURL;
theObject.appendChild(param);

param = document.createElement('param');
param.name = 'autostart';
param.value = '0';
theObject.appendChild(param);

param = document.createElement('param');
param.name = 'showcontrols';
param.value = '1';
theObject.appendChild(param);

param = document.createElement('param');
param.name = 'showstatusbar';
param.value = '1';
theObject.appendChild(param);

param = document.createElement('param');
param.name = 'showstatusbar';
param.value = '1';
theObject.appendChild(param);

embed = document.createElement('embed');
embed.src = audioURL;
embed.type = objTypeTag;
embed.autoplay = false;
embed.autostart = 0;
embed.width = 280;
embed.height = 69;
embed.controller = 1;
embed.showstatusbar = 1;
embed.bgcolor = '#ffffff';
theObject.appendChild(embed);

container.appendChild(theObject);

/*document.writeln("<div>");
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='#ffffff'></embed>"); // Firefox and Opera Win require both autostart and autoplay
document.writeln("</object>");
document.writeln("</div>"); */
}

var oldOnload = window.onload; // Let's save the existing assignment, if any
window.onload = function() {
	container = document.getElementById("musicContainer");
	embedPlayer(container, "blah", "http://ethelofnote.com/wp-content/uploads/2008/03/03%20Track%2003.mp3");

	// Now we call old function which was assigned to onLoad, thus playing nice
	if(oldOnload != null && typeof(oldOnload) == 'function') {
		oldOnload();
	}
}
