<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Opps sorry,</FONT></DIV>
<DIV><FONT face=Arial size=2>my last posting will probably not make much sense 
without the browser detection routine I use, so here it is:</FONT></DIV>
<DIV><FONT face=Arial size=2>var isNet4, isIE4, isNet6;<BR>// browser 
detect<BR>if ( navigator.appVersion.substring(0, 1) &gt;= 4) {<BR>&nbsp; if ( 
navigator.appName == "Netscape" ) {<BR>&nbsp;&nbsp;&nbsp; if ( 
navigator.appVersion.substring(0, 1) &gt;= 5 ) 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; isNet6 = true;<BR>&nbsp;&nbsp;&nbsp; } else 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; isNet4 = true;<BR>&nbsp;&nbsp;&nbsp; 
}<BR>&nbsp; }<BR>&nbsp; if ( navigator.appName == "Microsoft Internet Explorer" 
) {<BR>&nbsp;&nbsp;&nbsp; isIE4 = true<BR>&nbsp; }<BR>}</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>if (isNet4) {<BR>&nbsp; doc = 
"document.";<BR>&nbsp; forstyle = "";<BR>&nbsp; forid = "";<BR>&nbsp; htm = 
".document";<BR>&nbsp; winWidth = "window.innerWidth";<BR>&nbsp; winHeight = 
"window.innerHeight";<BR>} else if (isIE4) {<BR>&nbsp; doc = 
"document.all.";<BR>&nbsp; forstyle = ".style";<BR>&nbsp; forid = "";<BR>&nbsp; 
htm = "";<BR>&nbsp; winWidth = "document.body.clientWidth";<BR>&nbsp; winHeight 
= "document.body.clientHeight";<BR>} else if (isNet6) {<BR>&nbsp; doc = 
'document.getElementById("';<BR>&nbsp; forstyle = '").style';<BR>&nbsp; forid = 
'")';<BR>&nbsp; htm = "";<BR>&nbsp; winWidth = "window.innerWidth";<BR>&nbsp; 
winHeight = "window.innerHeight";<BR>}<BR>Robert</FONT></DIV>
<DIV><FONT face=Arial 
size=2>vreeland@studioframework.com</FONT></DIV></BODY></HTML>