// audio preview.
function startAudioPreview (id, path)
{
	// somewhat broken in ie6, dont wanna fix it either. Sorry, upgrade yo shiznit!
	if(navigator.appName.indexOf("Microsoft") != -1 && navigator.appVersion.indexOf ("MSIE 6.0;") != -1)
	{
			return;
	}

	var pcont = "audio_preview";
	var d = document.getElementById (pcont);
	d.innerHtml = "";
	
	var s2 = new SWFObject('flash/mediaplayer.swf','player','0','0','0');
						s2.addParam('allowfullscreen','true');
						s2.addVariable('file',path);
						s2.addVariable('backcolor','0x7DA5E0');
						s2.addVariable('frontcolor','0xffffff');
						s2.addVariable('lightcolor','0xefefef');
						s2.addVariable('autostart','true');
						s2.addVariable('enablejs', 'true');
						s2.addVariable('javascriptid', 'audio_player');
						s2.write(pcont);
						
	if (id != "")
		asyncGetRequest ("http://elfreebo.com/?module=get_video&id=" + id, null, null);
}

function stopAudioPreview ()
{
	/*
	var pcont = "audio_preview";
	var d = document.getElementById (pcont);
	d.innerHtml = "";
	*/
	startAudioPreview ('', '');
}

