/* AUDIO LOADER */
function loadAudioWithVolume(url,track,pwidth,pheight) {
   pwidth = (pwidth) ? pwidth : 200;
   pheight = (pheight) ? pheight : 21;

   var tracking;
   
	if (track=="pod") {
    tracking = "";
		} else if (track=="bites")  {
    tracking = "";
		}  else {
    tracking = "";
	}
	
   
   var player = "/podcasts/mp3/ent_podcast_vol.swf?src=";
   
   var cdspre = "";
   
   var embed = '<object type="application/x-shockwave-flash" ';
   embed += 'data="' + cdspre+player+tracking+cdspre+url+'" ';
   embed += 'width="'+pwidth+'" ';
   embed += 'height="'+pheight+'" ';
   embed += '/>'+"\n";
   embed += ' <param name="movie" ';
   embed += 'value="' + cdspre+player+tracking+cdspre+url+'" ';
   embed += '/>'+"\n";
   embed += ' <param name="quality" value="high" />'+"\n";
   embed += '</object>'+"\n";
   
   document.write(embed);
}
//function loadAudio(server, url,track,pwidth,pheight) {
//   pwidth = (pwidth) ? pwidth : 150;
//   pheight = (pheight) ? pheight : 21;

//   var tracking;
//   
//	if (track=="pod") {
//    tracking = "";
//		} else if (track=="bites")  {
//    tracking = "";
//		}  else {
//    tracking = "";
//	}
//	
//   
//   var player = server + "/podcasts/mp3/ent_podcast.swf?src=";
//   //var player = "ent_podcast_vol.swf?src=";
//   
//   var cdspre = "";
//   
//   var embed = '<object type="application/x-shockwave-flash" ';
//   embed += 'data="' + cdspre+player+tracking+cdspre+url+'" ';
//   embed += 'width="'+pwidth+'" ';
//   embed += 'height="'+pheight+'" ';
//   embed += '/>'+"\n";
//   embed += ' <param name="movie" ';
//   embed += 'value="' + cdspre+player+tracking+cdspre+server+url+'" ';
//   embed += '/>'+"\n";
//   embed += ' <param name="quality" value="high" />'+"\n";
//   embed += '</object>'+"\n";
//   //alert( embed );
//   
//   document.write(embed);
//}
function loadAudio(url,track,pwidth,pheight) {
   pwidth = (pwidth) ? pwidth : 150;
   pheight = (pheight) ? pheight : 21;

   var tracking;
   
	if (track=="pod") {
    tracking = "";
		} else if (track=="bites")  {
    tracking = "";
		}  else {
    tracking = "";
	}
	
   
   var player = "/podcasts/mp3/ent_podcast.swf?src=";
   var cdspre = "";
   
   var embed = '<object type="application/x-shockwave-flash" ';
   embed += 'data="' + cdspre+player+tracking+cdspre+url+'" ';
   embed += 'width="'+pwidth+'" ';
   embed += 'height="'+pheight+'" ';
   embed += '/>'+"\n";
   embed += ' <param name="movie" ';
   embed += 'value="' + cdspre+player+tracking+cdspre+url+'" ';
   embed += '/>'+"\n";
   embed += ' <param name="quality" value="high" />'+"\n";
   embed += '</object>'+"\n";
   
   document.write(embed);
}