String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g,'') } var POSICION = '../../'; var IU_MSGBOX = Class.create(); IU_MSGBOX.prototype = { conLinkExterno : typeof boolean, icoNewWin : typeof string, id : typeof string, alto : typeof number, ancho : typeof number, cerrar : typeof string, titulo : typeof string, texto : typeof string, botonera : typeof string, titulocss : typeof string, ret_btn1 : typeof string, ret_btn2 : typeof string, ret_btn3 : typeof string, ret_btn4 : typeof string, ret_btn5 : typeof string, ret_btn6 : typeof string, fnretorno : typeof string, ico_btn1 : typeof string, ico_btn2 : typeof string, ico_btn3 : typeof string, ico_btn4 : typeof string, ico_btn5 : typeof string, ico_btn6 : typeof string, conCerrar : typeof boolean, url : typeof string, zzIndex : typeof number, top : typeof number, left : typeof number, initialize : function(){ this.conLinkExterno = false; this.icoNewWin = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAALCAYAAACksgdhAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsSAAALEgHS3X78AAAAB3RJTUUH3wcNETEcoE6SLQAAAE1JREFUKM+VkdEKACAIAzvx/3/ZHkKIaKP2ZOhOR1TV+BWuWXcivJAPMyloAxbw1s99wG0A6He8nHRC48fQdbg8Kpc8T+W0Jqc0nyg1AV/PKxX+1+A6AAAAAElFTkSuQmCC"; this.id = "iframe_msgbox"; this.alto = 210; this.ancho = 550; this.cerrar = "MSGBOX.ventana.HideInfo"; this.titulo = ""; this.texto = ""; this.botonera = "0"; this.titulocss = "tituloazulmsgbox"; this.ret_btn1 = "A"; this.ret_btn2 = "C"; this.ret_btn3 = "S"; this.ret_btn4 = "N"; this.ret_btn5 = "I"; this.ret_btn6 = "L"; this.fnretorno = "MSGBOXaccion"; this.ico_btn1 = "img/ico/tick.png"; this.ico_btn2 = "img/ico/cross.png"; this.ico_btn3 = "img/ico/tick.png"; this.ico_btn4 = "img/ico/edit_remove.png"; this.ico_btn5 = "img/ico/imprimir16.gif"; this.ico_btn6 = "img/ico/cross.png"; this.conCerrar = true; this.url = ""; this.zzIndex = 2; this.top = 100; this.left = 0; }, Messagebox: function(){ try { /*VALIDACIONES*/ if (this.titulo.length > 50) { this.titulo = this.titulo.substr(0,50); } if (this.fnretorno.trim().length == 0){ this.fnretorno = "MSGBOXaccion"; } this.url += 'componente/messagebox/messagebox.php?titulo=' + escape(this.titulo) + '&texto=' + escape(this.texto) + '&btn=' + this.botonera + "&titulocss=" + this.titulocss; this.url += '&ret_btn1='+this.ret_btn1+'&ret_btn2='+this.ret_btn2+'&ret_btn3='+this.ret_btn3+'&ret_btn4='+this.ret_btn4+'&ret_btn5='+this.ret_btn5+'&ret_btn6='+this.ret_btn6; this.url += '&fnretorno='+this.fnretorno; var alto = this.alto; var ancho = this.ancho; var cerrar = this.cerrar; alto = (alto + "").replace ("px", "") * 1; ancho = (ancho + "").replace ("px", "") * 1; this.left = parseInt((document.body.clientWidth-ancho)/2); var inner = ''; var src = '
'; if(this.conCerrar || this.conLinkExterno == true){ src += ''; } src += '
'; if (this.conLinkExterno == true) { src += '
'; } src += 'CERRAR [X]'; src += '
' + inner + '
'; document.getElementById('MSGBOX_OL_').style.display = "block"; document.getElementById('MSGBOX_OL_').style.position = "fixed"; document.getElementById('MSGBOX_OL_').style.zIndex = this.zzIndex-1; document.getElementById('MSGBOX_').style.height = alto; document.getElementById('MSGBOX_').style.width = ancho; document.getElementById('MSGBOX_').style.top = this.top; document.getElementById('MSGBOX_').style.left = this.left; document.getElementById('MSGBOX_').innerHTML = src; document.getElementById('MSGBOX_').style.display = "block"; document.getElementById('MSGBOX_').style.zIndex = this.zzIndex; } catch(err) { alert('No se pudo inicializar el componente: Messagebox'); } }, HideInfo: function(){ document.getElementById('MSGBOX_').style.display = "none"; document.getElementById('MSGBOX_OL_').style.display = "none"; document.getElementById('MSGBOX_').innerHTML = ""; } }