I am not sure what fails in Firefox (appName=Netscape appVersion = 5.0..........) that works in IE5.5 & 6.0 and can be made to work in Netscape 4.5 any ideas?
ns & ie are created by tests that genrate nulls if not that browser (in Firefox both nulls) the set-up for layers has been ommitted for simplicity but may be relevant. I will ask the code originator if I can locate him.
if (ns){
for (i=0; i < n; i++)
document.write('<layer name="nsmsg'+i+'" top=0 left=0 height='+b+' width='+b+'><center>'+props+msg+'</font></center></layer>');
}
if (ie){
document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < n; i++)
document.write('<div id="iemsg" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center;font-weight:regular;cursor:default">'+props+msg+'</font></div>');
document.write('</div></div>');
see or
ns & ie are created by tests that genrate nulls if not that browser (in Firefox both nulls) the set-up for layers has been ommitted for simplicity but may be relevant. I will ask the code originator if I can locate him.
if (ns){
for (i=0; i < n; i++)
document.write('<layer name="nsmsg'+i+'" top=0 left=0 height='+b+' width='+b+'><center>'+props+msg+'</font></center></layer>');
}
if (ie){
document.write('<div id="outer" style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i=0; i < n; i++)
document.write('<div id="iemsg" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center;font-weight:regular;cursor:default">'+props+msg+'</font></div>');
document.write('</div></div>');
see or