<!-- Begin Left Sidebar

// If Firefox, the margin to the left is more than for IE

var wdth = 8;

if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
 var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
 if (ieversion>=8){
	wdth = 8;}
 else if (ieversion>=7){
	wdth = 8;}
 else if (ieversion>=6){
	wdth = 8;}
 else if (ieversion>=5){
	wdth = 8;}
}

if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ //test for Firefox/x.x or Firefox x.x (ignoring remaining digits);
  wdth = 10;
}

document.write('<div style="margin-top:3px; margin-bottom:'+wdth+'px;">');

// -- END -->