function DisplayAutoSoundPlayer(fileUrl, width)
{
	if ((navigator.platform == "MacPPC") || (navigator.platform == "MacIntel"))
	{
		pixelHeight = 16 ;
	}
	else
	{
		pixelHeight = 45 ;
	}
	tagText = '<EMBED  SRC="' + fileUrl +'" AUTOSTART=true WIDTH=' + width + ' HEIGHT=' + pixelHeight + 'LOOP=false>' ;
	document.write(tagText) ;
}

function DisplayManualSoundPlayer(fileUrl, width)
{
	if ((navigator.platform == "MacPPC") || (navigator.platform == "MacIntel"))
	{
		pixelHeight = 16 ;
	}
	else
	{
		pixelHeight = 45 ;
	}
	tagText = '<EMBED  SRC="' + fileUrl +'" AUTOSTART=false WIDTH=' + width + ' HEIGHT=' + pixelHeight + 'LOOP=false>' ;
	document.write(tagText) ;
}

function DisplayAutoSoundDualPlayer(fileUrl, width)
{
	if ((navigator.platform == "MacPPC") || (navigator.platform == "MacIntel"))
	{
		pixelHeight = 16 ;
		format = '.mp3' ;
	}
	else
	{
		format = '.wav' ;
		pixelHeight = 45 ;
	}
	tagText = '<EMBED  SRC="' + fileUrl + format + '" AUTOSTART=true WIDTH=' + width + ' HEIGHT=' + pixelHeight + 'LOOP=false>' ;
	document.write(tagText) ;
}

function DisplayManualSoundDualPlayer(fileUrl, width)
{
	if ((navigator.platform == "MacPPC") || (navigator.platform == "MacIntel"))
	{
		pixelHeight = 16 ;
		format = '.mp3' ;
	}
	else
	{
		format = '.wav' ;
		pixelHeight = 45 ;
	}
	tagText = '<EMBED  SRC="' + fileUrl + format + '" AUTOSTART=false WIDTH=' + width + ' HEIGHT=' + pixelHeight + 'LOOP=false>' ;
	document.write(tagText) ;
}

function DisplayAutoSoundPlayerMP3(fileUrl, width)
{
	format = '.mp3' ;
	if ((navigator.platform == "MacPPC") || (navigator.platform == "MacIntel"))
	{
		pixelHeight = 16 ;
	}
	else
	{
		pixelHeight = 45 ;
	}
	tagText = '<EMBED  SRC="' + fileUrl + format + '" AUTOSTART=true WIDTH=' + width + ' HEIGHT=' + pixelHeight + 'LOOP=false>' ;
	document.write(tagText) ;
}

function DisplayManualSoundPlayerMP3(fileUrl, width)
{
	format = '.mp3' ;
	if ((navigator.platform == "MacPPC") || (navigator.platform == "MacIntel"))
	{
		pixelHeight = 16 ;
	}
	else
	{
		pixelHeight = 45 ;
	}
	tagText = '<EMBED  SRC="' + fileUrl + format + '" AUTOSTART=false WIDTH=' + width + ' HEIGHT=' + pixelHeight + 'LOOP=false>' ;
	document.write(tagText) ;
}

