//Reference from FuLaDe Entertainment Co.,Ltd. Taiwan
//Edit by Roy Tsai
function flash_object_display(flash_source, flash_width, flash_height, flash_quality, flash_wmode) {

	if (flash_width=="") {
		flash_width="0";
	}

	if (flash_height=="") {
		flash_height="0";
	}

	if (flash_quality=="") {
		flash_quality = "high";
	}

	if (flash_wmode =="") {
		flash_wmode = "window";//window,Opaque,Transparent
	}
	

	document.write('<object ');
	document.write('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" ');
	document.write('width="'+ flash_width +'" ');
	document.write('height="'+ flash_height +'" ');
	document.write('>');

	document.write('<param name="movie" value="'+ flash_source +'">');
	document.write('<param name="quality" value="'+ flash_quality +'">');
	document.write('<PARAM NAME=wmode value="'+ flash_wmode +'">');

	document.write('<embed ');
	document.write('src="'+ flash_source +'" ');
	document.write('quality="high" ');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" ');
	document.write('type="application/x-shockwave-flash" ');
	document.write('width="'+ flash_width +'" ');
	document.write('height="'+ flash_height +'" ');
	document.write('wmode="' + flash_wmode + '" ');
	document.write('>');
	document.write('</embed> ');
	document.write('</object> ');
}

function youtube_movie_display(flash_source, flash_width, flash_height, flash_quality, flash_wmode) {
	if (flash_width=="") {
		flash_width="0";
	}

	if (flash_height=="") {
		flash_height="0";
	}

	if (flash_quality=="") {
		flash_quality = "high";
	}

	if (flash_wmode =="") {
		flash_wmode = "transparent";
	}


	document.write('<object ');
	document.write('width="'+ flash_width +'" ');
	document.write('height="'+ flash_height +'" ');
	document.write('>');
	document.write('<param name="movie" value="'+ flash_source +'"></param>');
	document.write('<PARAM NAME=wmode value="'+ flash_wmode +'">');
	document.write('<param name="allowFullScreen" value="true"></param>');
	document.write('<embed ');
	document.write('src="'+ flash_source +'" ');
	document.write('type="application/x-shockwave-flash" ');
	document.write('allowfullscreen="true" ');
	document.write('width="'+ flash_width +'" ');
	document.write('height="'+ flash_height +'" ');
	document.write('wmode="' + flash_wmode + '" ');
	document.write('>');
	document.write('</embed> ');
	document.write('</object> ');
}