function flashtext(filepath, flashwidth, flshheight)
{
	documenttext = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width="+flashwidth+" height="+flshheight+" id='top_logo' viewastext>"
	documenttext = documenttext + "<param name=movie value="+filepath+">"
	documenttext = documenttext + "<param name=quality value='high'>"
	documenttext = documenttext + "<param name='wmode' value='transparent'>"
	documenttext = documenttext + "<embed src="+filepath+" menu='false' quality='high' width="+flashwidth+" height="+flshheight+" name='navi1' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"
	documenttext = documenttext + "</object>";
	document.write (documenttext);
}