function writeFlash(strName, strWidth, strHeight, strBackgroundColor, bolLoop) {
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"');
	document.write('WIDTH=' + strWidth + ' HEIGHT=' + strHeight + '>');
	document.write('<PARAM NAME=movie VALUE="' + strName + '"> <PARAM NAME=quality VALUE=high> ');
	if (bolLoop) document.write('<PARAM NAME=loop VALUE=false> ');
	document.write('<PARAM NAME=bgcolor VALUE=' + strBackgroundColor + '> ');
	document.write('<EMBED src="' + strName + '" quality=high ');
	if (bolLoop) document.write('loop=false');
	document.write(' bgcolor=' + strBackgroundColor + ' WIDTH=' + strWidth + ' HEIGHT=' + strHeight + ' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>');
	document.write('</OBJECT>');
}

function writeThis(strWrite){
	document.write(strWrite);
}