function Set(id){this.base=SimpleViewBase;this.base(id);this.type="Set";this.hashcode="Set@"+Math.floor(Math.random()*9999999999);this.setInfotext=elm_setInfotext;this.setIntroduction=elm_setIntroduction;this.setTitle=elm_setTitle;this.elmInfotext=document.getElementById(this.id+"Infotext");this.elmInfoIcon=document.getElementById(this.id+"InfotextIcon");this.elmInfotextContent=document.getElementById(this.id+"InfoboxContent");this.elmTitle=document.getElementById(this.id+"Title");this.elmIntroduction=document.getElementById(this.id+"Introduction");if(this.elmInfoIcon&&this.elmInfotext){this.elmInfoIcon.obj=this;this.elmInfotext.obj=this;this.elmInfoIcon.onmouseover=handleOnMouseOver;this.elmInfotext.onmouseover=handleOnMouseOut;this.elmInfoIcon.onmouseout=handleOnMouseOut;}
function elm_setInfotext(infotext){this.setElement(this.elmInfotextContent,infotext);}
function elm_setTitle(title){this.setElement(this.elmTitle,title);}
function elm_setIntroduction(introduction){this.setElement(this.elmIntroduction,introduction);}
function handleOnMouseOver(e){if(eplayer&&eplayer.startPlaying&&this.obj.soundURL){eplayer.startPlaying(this.obj.soundURL);}}
function handleOnMouseOut(e){if(eplayer&&eplayer.stopPlaying&&this.obj.soundURL){eplayer.stopPlaying();if(!e){e=window.event;}
e.cancelBubble=true;}}}
