var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function intro4_DoFSCommand(command, args) {
	var intro4Obj = isInternetExplorer ? document.all.intro4 : document.intro4;
	//
	// Place your code here.
	//
	if(command == "status") {
		 document.getElementById("talkinghead").innerHTML = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" WIDTH="168" HEIGHT="210"><PARAM NAME="movie" VALUE="images/readerRegular.swf?mv=mp3s/'+args+'"><PARAM NAME="quality" VALUE="high"><EMBED SRC="images/readerRegular.swf?mv=mp3s/'+args+'" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" TYPE="application/x-shockwave-flash" WIDTH="168" HEIGHT="210"></EMBED></OBJECT>';
	 }

}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub intro4_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call intro4_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
