<!--
//var browser = navigator.appName
//var ver = navigator.appVersion
//var thestart = parseFloat(ver.indexOf(”MSIE”))+1
//var brow_ver = parseFloat(ver.substring(thestart+4,thestart+7))

//The variables do the following:

/* browser: Gets the browser type (IE, Netscape, etc.). 
ver: Gets the version string. A long string of info with various bits of goo in it. 
the start: We need this number for the next part - trust me. 
brow_ver: This is the IE version number (generally 5.5, 6.0 or 7.0), converted from a string into an integer. 
Next, we need to create an IF conditional that decides whether the browser type is Internet Explore, and checks if the IE version is less than 6**. And if it is, we need to tell the browser to redirect to a pre-created HTML file instead of displaying the site.*/

if (is_ie6)
{
document.write ('<div class="index" id="iewrap" style="margin-top:-50px;">')
} else {
document.write ('<div class="index" id="iewrap">') }
/*document.write browser;
if ((browser=="Microsoft Internet Explorer") && (brow_ver < 6))
{
document.write("<div class=\"index\" id=\"iewrap\" style=\"margin-top:-50px;\">")
} */
-->

