function showswf(flashName, wid, hai){
	
	var varFlash = 'imagesen/flash/' + flashName;
	
	if(wid == null){
		wid = 198;
		hai = 250;
	}
	
	if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js.");
	} else {
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width', wid,
			'height', hai,
			'src', varFlash,
			'quality', 'best',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'noscale',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', varFlash,
			'bgcolor', '#ffffff',
			'name', varFlash,
			'menu', 'flase',
			'allowFullScreen', 'false',
			'allowScriptAccess','sameDomain',
			'movie', varFlash,
			'salign', 't'
			);
	}
}