// JavaScript Document

function gs_showSwfEx(zFileName, zWidth, zHeight) {
	document.write('<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.write('<param name="AllowScriptAccess" value="sameDomain"> ');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="movie" value="' + zFileName + '">');
	document.write('<param name="wmode" value="Transparent">');
	document.write('<embed AllowScriptAccess="sameDomain" src="' + zFileName + '" width="' + zWidth + '" height="' + zHeight + '" wmode="Transparent"></embed>');
	document.write('</object>');
}

function gs_showSwfEx2(zObjName, zFileName, zWidth, zHeight) {
	document.write('<object id="' + zObjName + '" name="' + zObjName + '" 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.write('<param name="AllowScriptAccess" value="sameDomain"> ');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="movie" value="' + zFileName + '">');
	document.write('<param name="wmode" value="Transparent">');
	document.write('<embed AllowScriptAccess="sameDomain" src="' + zFileName + '" width="' + zWidth + '" height="' + zHeight + '" wmode="Transparent"></embed>');
	document.write('</object>');
}
