function showFlash(fileName,theWidth,theHeight) { 


	PARAM =''+
		'<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" '+ 
		'  align="middle" width="'+ theWidth +'" height="'+ theHeight +'" VIEWASTEXT>'+ //
		'<param name="allowScriptAccess" value="sameDomain" />'+
		'<param name="movie" value="'+ fileName +'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'+
		'<embed src="'+ fileName +'" quality="high" bgcolor="#ffffff" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"' +
		' bgcolor="#ffffff"  pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+ theWidth +'" height="'+ theHeight +'" />'+ 
		'</object>';

	ShowControl(PARAM);
}

function ShowControl(theObject){
	document.write(theObject)
}