var defaultVspace = '0';
var defaultHspace = '0';
var defaultAlign = 'default';
var defaultBgcolor = '#000000';
var defaultQuality = 'high';
var defaultLoop = 'false';
var defaultPlay = 'true';
var defaultScale = 'exactfit';
var defaultWmode = 'transparent';

function insertFlash(varID, varClass, varMovieFile, varWidth, varHeight, varHspace, varVspace, varAlign, varBgcolor, varQuality, varLoop, varPlay, varScale, varWmode)
{
	document.write('<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="' + varWidth + '" height="' + varHeight + '" hspace="' + varHspace + '" vspace="' + varVspace + '" align="' + varAlign + '"><param name="BGCOLOR" value="' + varBgcolor + '" /><param name="movie" value="' + varMovieFile + '" /><param name=quality value=' + varQuality + ' /><param name="LOOP" value="' + varLoop + '" /><param name="PLAY" value="' + varPlay + '" /><param name="SCALE" value="' + varScale + '" /><param name="wmode" value="' + varWmode + '" /><embed src="' + varMovieFile + '" width="' + varWidth + '" height="' + varHeight + '" hspace="' + varHspace + '" vspace="' + varVspace + '" align="' + varAlign + '" bgcolor="' + varBgcolor + '" quality=' + varQualtiy + ' loop="' + varLoop + '" play="' + varPlay + '" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="' + varScale + '" wmode="' + varWmode + '"></embed></object>');
}

function insertFlash(varID, varClass, varMovieFile, varWidth, varHeight)
{
	document.write('<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="' + varWidth + '" height="' + varHeight + '" hspace="' + defaultHspace + '" vspace="' + defaultVspace + '" align="' + defaultAlign + '"><param name="BGCOLOR" value="' + defaultBgcolor + '" /><param name="movie" value="' + varMovieFile + '" /><param name=quality value=' + defaultQuality + ' /><param name="LOOP" value="' + defaultLoop + '" /><param name="PLAY" value="' + defaultPlay + '" /><param name="SCALE" value="' + defaultScale + '" /><param name="wmode" value="' + defaultWmode + '" /><embed src="' + varMovieFile + '" width="' + varWidth + '" height="' + varHeight + '" hspace="' + defaultHspace + '" vspace="' + defaultVspace + '" align="' + defaultAlign + '" bgcolor="' + defaultBgcolor + '" quality=' + defaultQuality + ' loop="' + defaultLoop + '" play="' + defaultPlay + '" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="' + defaultScale + '" wmode="' + defaultWmode + '"></embed></object>');
}