function writeFlashTag(movie, width, height, bgcolor, paramstring) {
	document.writeln('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH="' + width + '" HEIGHT="' + height + '">');
	source = movie
	if ((paramstring != null) && (paramstring != "")) {
		source = source + "?" + paramstring;
	}
	document.writeln('  <PARAM NAME=movie VALUE="' + source + '">');
	document.writeln('  <PARAM NAME=quality VALUE=high>'); 
	document.writeln('  <PARAM NAME=menu VALUE=false>');
	document.writeln('  <PARAM NAME=bgcolor VALUE="#' + bgcolor + '">');
	document.writeln('  <EMBED src="' + source + '" quality=high bgcolor="#' + bgcolor + '" WIDTH="' + width + '" HEIGHT="' + height + '" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>');
	document.writeln('</OBJECT>');
}


function writeFlashTagForSingleParam(objectParamStr)
{
	document.writeln(objectParamStr);
}
