function openchromeless(theURL, wname, W, H, CLOSEdwn, CLOSEup, CLOSEovr, NONEgrf, CLOCKgrf, winTIT, winREALtit , winBORDERCOLOR, winBORDERCOLORsel, winBGCOLOR) { var windowW = W; var windowH = H; var windowX = Math.ceil( (window.screen.width - windowW) / 2 ); var windowY = Math.ceil( (window.screen.height - windowH) / 2 ); if (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion)>=4) isie=true else isie=false if (isie) { H=H+22+10+2; W=W+10+10+2; } s = ",width="+W+",height="+H; if (isie && (navigator.userAgent.toLowerCase().indexOf("win")!=-1) ) { var dowin = theURL != "" ? true : false; var chromeTIThtml = '\n' + ' '+ '\n'+ ' '+ '\n'+ ' CHROMELESS WINDOWS / TITLEBAR '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ '
'+ '\n'+ '
'+ '
'+winTIT+'
' +'
'+ '\n'+ '
'+ '\n'+ '
'+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n' var chromeFRMhtml = '' + ' '+ '\n'+ ' '+ '\n'+ ''+ winREALtit +' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' '+ '\n'+ ' ' splashWin = window.open( "" , wname, "fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0"+s); splashWin.resizeTo( Math.ceil( W ) , Math.ceil( H ) ); splashWin.moveTo ( Math.ceil( windowX ) , Math.ceil( windowY ) ); splashWin.document.open(); splashWin.document.write( chromeFRMhtml ); splashWin.document.close(); } else { var splashWin = window.open(theURL, wname, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1"+s, true); } splashWin.focus(); } function quitasaltolinea(txt) { var salida = txt.toString() var re = /\\/g; var salida = salida.replace(re, "\\\\"); var re = /\//g; var salida = salida.replace(re, "\\\/"); var re = /\"/g; var salida = salida.replace(re, "\\\""); var re = /\'/g; var salida = salida.replace(re, "\\\'"); var re = /\n/g; var salida = salida.replace(re, "\\n"); var re = / /g; var salida = salida.replace(re, ""); var re = /\t/g; var salida = salida.replace(re, ""); var re = /\r/g; var salida = salida.replace(re, ""); return salida }