//Flash
function flashWrite( swf , width , height )
{
	var acfl = ""
	acfl+="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'"
	acfl+="        codebase='http://download.macromedia.com/pub/shockwave/"
	acfl+="cabs/flash/swflash.cab#version=7,0,19,0'"
	acfl+="        width   = " + width
	acfl+="        height  = " + height + ">"
	acfl+="<param name = movie value=" + swf + ">"
	acfl+="<param name = quality value=high>"
	acfl+="<embed  src     = " + swf + " "
	acfl+="        quality = high  "
	acfl+="        width   = "+ width
	acfl+="        height  = " + height
	acfl+="        type    = 'application/x-shockwave-flash' "
	acfl+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
	acfl+="</embed>"
	acfl+="</object>"

	document.write(acfl)
}
