function writeFlashBlock(address) {
	document.write('<object type="application/x-shockwave-flash" data="' + address + '" width="180" height="90" >');
	document.write('<param name="movie" value="' + address + '" />');
	document.write('<param name="loop" value="false" />');
	document.write('<param name="quality" value="high" />');
	document.write('</object>');
}

function writeFlashBlockWithSize(address, width, height) {
	document.write('<object type="application/x-shockwave-flash" data="' + address + '" width="' + width + '" height="' + height + '" >');
	document.write('<param name="movie" value="' + address + '" />');
	document.write('<param name="loop" value="false" />');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="'  + address + '" quality="high" bgcolor="#ffffff" width="'  + width + '" height="' + height + '" name="" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}

function writeFlashBlockWithSizeAndWithBaseAndWithBackgroundcolor(address, width, height, base, bgcolor) {
	document.write('<object type="application/x-shockwave-flash" data="' + address + '" width="' + width + '" height="' + height + '" >');
	document.write('<param name="movie" value="' + address + '" />');
	document.write('<param name="autoplay" value="false" />');
	document.write('<param name="loop" value="false" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="base" value="' + base + '" />');
	document.write('<embed src="'  + address + '" base="' + base + '" quality="high" play="false" bgcolor="' + bgcolor + '" width="'  + width + '" height="' + height + '" name="" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}
