﻿<!--
function Music_Show(Obj,File,Width,Height,mode){
	var Obj_Name = Obj;
	Obj = document.getElementById(Obj_Name)
	if(Obj!=null){
		Str = ""
		Str = Str + "<embed src=\"" + File + "\" " + mode 
		Str = Str + " width=\"" + Width + "\" height=\"" + Height + "\" >";
		Obj.innerHTML = Str;
	}else{
		alert("找不到指定物件ID名稱：「" + Obj_Name + "」，例如..\n\n<div id=\"" + Obj_Name + "\">JavaScript程式碼</div>");
	}
}
//-->
