function openflashfile(flash_src, flash_width, flash_height, transparent) {	

	document.write ('<div style="z-index=10">');
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="' + flash_width + '" height="' + flash_height + '">');
	document.write ('<param name=movie value="' + flash_src + '">');
	document.write ('<param name=quality value=high>');
	if (transparent == true) {
		document.write ('<param name="wmode" value="transparent">');
		document.write ('<embed src="' + flash_src + '" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + flash_width + '" height="' + flash_height + '" wmode="transparent"></embed>'); 
	} else {
		document.write ('<embed src="' + flash_src + '" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + flash_width + '" height="' + flash_height + '"></embed>'); 
	}
	document.write ('</object>');
	document.write ('</div>');
}