function WriteFlash(filename, width, height, id, bgcolor)
{
/*    document.write('<object type=\"application/x-shockwave-flash\" data=\"'+filename+'\" width=\"'+width+'\" 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>');
*/
	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\" width=\"'+width+'\" height=\"'+height+'px\" id=\"'+ id +'\" align=\"middle\">');
	document.write('<param name=\"allowScriptAccess\" value=\"sameDomain\" />');
	document.write('<param name=\"movie\" value=\"'+ filename +'\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"'+ bgcolor +'\" /><embed src=\"'+ filename +'\" quality=\"high\" bgcolor=\"'+ bgcolor +'\" width=\"'+ width +'\" height=\"'+ height +'\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />');
	document.write('</object>');	
}

