function deployFlash(width,height,id,path,vars,color) {

	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
	document.write('width="'+width+'" height="'+height+'" id="'+id+'" align="middle">\n');

	document.write('<param name="movie" value="'+path+vars+'">\n');

	document.write('<param name="quality" value="high">\n');
	document.write('<param name="allowFullScreen" value="true" />\n');
	document.write('<param name="allowscriptaccess" value="always" />\n');

	if (color=='null') {
		document.write('<param name="wmode" value="transparent">\n');
	} else {
		document.write('<param name="bgcolor" value="'+color+'">\n');
	}

	document.write('<embed src="'+path+vars+'" quality="high" ');
	if (color=='null') {
		document.write('wmode="transparent" ');
	} else {
		document.write('bgcolor="'+color+'" ');
	}
	document.write('allowscriptaccess="always" ');
	document.write('allowfullscreen="true" ');
	document.write('width="'+width+'" height="'+height+'" name="'+id+'" valign = "middle" align="middle" ');
	document.write('type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n');
	document.write('</embed>\n');

	document.write('</object>\n');

}



function deployFlashAlign(width,height,id,path,vars,color,a) {

	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
	document.write('width="'+width+'" height="'+height+'" id="'+id+'" align="middle">\n');

	document.write('<param name="movie" value="'+path+vars+'">\n');

	document.write('<param name="quality" value="high">\n');
	document.write('<param name="allowFullScreen" value="true" />\n');
	document.write('<param name="allowscriptaccess" value="always" />\n');
	document.write('<param name="salign" value="'+a+'" />\n');

	if (color=='null') {
		document.write('<param name="wmode" value="transparent">\n');
	} else {
		document.write('<param name="bgcolor" value="'+color+'">\n');
	}

	document.write('<embed src="'+path+vars+'" quality="high" ');
	if (color=='null') {
		document.write('wmode="transparent" ');
	} else {
		document.write('bgcolor="'+color+'" ');
	}
	document.write('allowscriptaccess="always" ');
	document.write('salign="'+a+' allowfullscreen="true" ');
	document.write('width="'+width+'" height="'+height+'" name="'+id+'" valign="middle" align="middle" ');
	document.write('type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n');
	document.write('</embed>\n');

	document.write('</object>\n');

}