function flashtext(filepath, flashwidth, flshheight)
{
	documenttext = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,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='https://www.macromedia.com/go/getflashplayer' />"
	documenttext = documenttext + "</object>";
	document.write (documenttext);
}

function flashtext2(filepath, flashwidth, flshheight, flashcolor, flashtransp, flashname)
{
	documenttext = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width="+flashwidth+" height="+flshheight+" id="+flashname+" viewastext>"
	documenttext = documenttext + "<param name=movie value="+filepath+">"
	documenttext = documenttext + "<param name=quality value='high'>"
	documenttext = documenttext + "<param name=bgcolor value='"+flashcolor+"'>"
	if (flashtransp)
	{
	documenttext = documenttext + "<param name='wmode' value='transparent'>"
	}
	documenttext = documenttext + "<embed src='"+filepath+"' menu='false' quality='high' "
	if (flashtransp)
	{
	documenttext = documenttext + " wmode='transparent' "
	}
	documenttext = documenttext + " bgcolor='"+flashcolor+"' width="+flashwidth+" height="+flshheight+" name="+flashname+" align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='https://www.macromedia.com/go/getflashplayer' />"
	documenttext = documenttext + "</object>";
	document.write (documenttext);
}
function printobj()
{
	documenttext = "<object id='factory' viewastext  style='display:none' classid='clsid:1663ed61-23eb-11d2-b92f-008048fdd814' codebase='/print/smsx.cab#Version=6,3,436,14'></object>"
	document.write (documenttext);
}
