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>');
}