<!-- // Detect Client Browser type
function WriteFlash(aFile, aWidth, aHeight, aP1, aP1Name, aP2, aP2Name, aP3, aP3Name, aP4, aP4Name)
{
	// parameters
	var sFlashVars = "";

	if (aP1 != undefined) sFlashVars = sFlashVars + aP1Name + '=' + aP1;
	if (aP2 != undefined) sFlashVars = sFlashVars + '&' + aP2Name + '=' + aP2;
	if (aP3 != undefined) sFlashVars = sFlashVars + '&' + aP3Name + '=' + aP3;
	if (aP4 != undefined) sFlashVars = sFlashVars + '&' + aP4Name + '=' + aP4;

	document.write('<table border = "0" cellpadding = "0" cellspacing = "0" align="center">');
	document.write('<tr>');
	document.write('<td>');
	document.write('<div id="container">');
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+aWidth+'" height="'+aHeight+'" id="show" align="middle">');
	document.write('<param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" />');
	document.write(' <param name="movie" value="'+aFile+'"><param name="quality" value="high" /><param name="bgcolor" value="#000000" />');
	document.write(' <embed src="'+aFile+'" FlashVars="'+ sFlashVars +'" quality="high" bgcolor="#000000" width="'+aWidth+'" height="'+aHeight+'" name="show" align="middle" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');

	if (sFlashVars != "") document.write('<param name=FlashVars value="'+sFlashVars+'">');

	document.write('</object>');

	document.write('</div>');

	document.write('</td>');
	document.write('</tr>');
	document.write('</table>');
}

function ReloadPage(String)
{
	document.location.reload(true);
}

// -->
