function showflash(str, width, height, objName) {	
	document.write("<object id='"+objName+"' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+width+"' height='"+height+"'>")
	//document.write("<param name='wmode' value='opaque'>")
	document.write("<param name='movie' value='"+str+"'>")
	document.write("<param name='wmode' value='transparent'>")	
	document.write("<param name='quality' value='high'>")
	document.write("<param name='allowScriptAccess' value='always'>")	
	document.write(" <embed name='"+objName+"' allowScriptAccess='always' showLiveConnect='true'  src='"+str+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed></object>")

}


