function WriteFlashOld(filename, width, height, id, col)
{
	document.write('<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"');
	document.write(' width=\"'+width+'\" height=\"'+height+'\" id=\"'+id+'\" align=\"middle\" VIEWASTEXT> <param name=\"allowScriptAccess\" value=\"sameDomain\" /> <param name=\"movie\" value=\"'+filename+'\" /> <param name=\"menu\" value=\"false\" /> <param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#ffffff\" /> ');
	document.write(' <embed src=\""+filename+"\" menu=\"false\" quality=\"high\" bgcolor=\"#ffffff\" width=\"'+width+'\"');
	document.write(' height=\"'+height+'\" name=\"'+id+'\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\"');
	document.write(' pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />');
	document.write(' </object>');
}

function WriteFlash(filename, width, height, id, bgcolor)
{
    document.write('<object type=\"application/x-shockwave-flash\" data=\"'+filename+'\" width=\"'+width+'px\" height=\"'+height+'px\" VIEWASTEXT><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"transparent\" />');
    
    if (bgcolor!='')
		document.write('<param name=\"bgcolor\" value=\"#'+bgcolor+'\" />');
		
	document.write('<param name=\"movie\" value=\"'+filename+'\" />');
	document.write('</object>');
}
