function Page(id){this.base=SimpleViewBase;this.base(id);this.type="Page";this.hashcode="Page@"+Math.floor(Math.random()*9999999999);this.setInfotext=elm_setInfotext;this.setTitle=elm_setTitle;this.setInfosound=elm_setInfosound;this.playSound=elm_playSound;this.soundURLs=null;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");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_setInfosound(url){this.soundURLs=url.split(',');}
function elm_setTitle(title){this.setElement(this.elmTitle,title);}
function elm_playSound(number){if(eplayer&&eplayer.startPlaying&&this.soundURLs){if(this.soundURLs.length<number){number=this.soundURLs.length;}
eplayer.startPlaying(this.soundURLs[number-1]);}}}
