var im_conf_font = { content : null, "get_element" : function() { var _document = document.getElementById(im_win.chat_pJid + '_edita'); this.content = _document.contentWindow.document.getElementsByTagName('body').item(0); }, "changeFont" : function(nameFont) { this.get_element(); this.content.style.fontFamily = nameFont; this.content.innerHTML = this.content.innerHTML; im_win.hideFontNameSelection(); }, "changeSizeFont" : function(SizeFont) { this.get_element(); this.content.style.fontSize = SizeFont; this.content.innerHTML = this.content.innerHTML; im_win.hideFontSizeSelection(); }, "changeFontColor" : function(ColorFont) { this.get_element(); this.content.style.color = ColorFont; this.content.innerHTML = this.content.innerHTML; im_win.hideFontColorSelection(); }, "changeFontStyle" : function(StyleFont) { this.get_element(); if(StyleFont == "bold") this.content.style.fontWeight = "bold"; else{ this.content.style.fontWeight = "normal"; this.content.style.fontStyle = StyleFont; } this.content.innerHTML = this.content.innerHTML; im_win.hideFontStyleSelection(); }, "defaultOptions" : function() { this.content.style.fontStyle = "normal" ; this.content.style.color = "000000"; this.content.style.fontStyle = "10pt"; } }