<!--// Generates <br> for non-NS4 browsers to compensate for
//     flaky <DIV> handling in NS4 
var IE4 = 0;
var anm = navigator.userAgent.substring(0,9);
if((anm=="Mozilla/4") || (anm=="Mozilla/5") || (anm=="Mozilla/6"))
   IE4 = (navigator.appVersion.indexOf("MSIE",0)==-1) ? 0 : 1; 
if(IE4)
document.write("<br />"); 
//--> 

