

// ÇÃ·¡½¬°³Ã¼ ³Ö±â
function insertFlashObject(filePath, width, height) {
	strText = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" "
	strText = strText + "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" "
	strText = strText + "width=\"" + width + "\" height=\"" + height + "\">"
	strText = strText + "<param name=\"movie\" value=\"" + filePath + "\">"
	strText = strText + "<param name=\"wmode\" value=\"transparent\">"
	strText = strText + "<param name=\"quality\" value=\"high\">"
	strText = strText + "<embed src=\"" + filePath + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" "
	strText = strText + "width=\"" + width + "\" height=\"" + height + "\"></embed></object>"
	document.write(strText)
}


