function showSwf(zFileName, zWidth, zHeight) {
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,2*,0" width="' + zWidth + '" height="' + zHeight + '">');
	document.writeln('<param name="AllowScriptAccess" value="sameDomain"> ');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="menu" value="false">');
	document.writeln('<param name="movie" value="' + zFileName + '">');
	document.writeln('<embed AllowScriptAccess="never" src="' + zFileName + '" width="' + zWidth + '" height="' + zHeight + '" ></embed>');
	document.writeln('</object>');
}


function showSwfEx(zFileName, zWidth, zHeight) {
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,2*,0" width="' + zWidth + '" height="' + zHeight + '">');
	document.writeln('<param name="AllowScriptAccess" value="sameDomain"> ');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="menu" value="false">');
	document.writeln('<param name="movie" value="' + zFileName + '">');
	document.writeln('<param name="wmode" value="Transparent">');
	document.writeln('<embed AllowScriptAccess="never" src="' + zFileName + '" width="' + zWidth + '" height="' + zHeight + '" wmode="Transparent"></embed>');
	document.writeln('</object>');
}
