<!-- hide from old browsers

	bName = navigator.appName;
	bVer = parseInt(navigator.appVersion);

	if (bName == "Netscape" && bVer >= 3)
		version = "n3";

	else if (bName == "Microsoft Internet Explorer" && bVer >= 4.0)
 		version = "n3";
	else version = "n2";
	if (version == "n3") {

             i2on = new Image();
             i2on.src = "images/mail_on.gif";
             i3on = new Image();
             i3on.src = "images/inter_office_on.gif";
             i4on = new Image();
             i4on.src = "images/first_class_on.gif";
             i5on = new Image();
             i5on.src = "images/usps_on.gif";
             i6on = new Image();
             i6on.src = "images/fedex_on.gif";
             i7on = new Image();
             i7on.src = "images/bulk_on.gif";
             i8on = new Image();
             i8on.src = "images/student_mail_on.gif";
             i10on = new Image();
             i10on.src = "images/arrow_back_on.gif";
             i11on = new Image();
             i11on.src = "images/arrow_top_on.gif";
             i12on = new Image();
             i12on.src = "images/arrow_next_on.gif";
			 i13on = new Image();
             i13on.src = "images/billing_acct_info_on.gif";

             i2off = new Image();
             i2off.src = "images/mail.gif";
             i3off = new Image();
             i3off.src = "images/inter_office.gif";
             i4off = new Image();
             i4off.src = "images/first_class.gif";
             i5off = new Image();
             i5off.src = "images/usps.gif";
             i6off = new Image();
             i6off.src = "images/fedex.gif";
             i7off = new Image();
             i7off.src = "images/bulk.gif";
             i8off = new Image();
             i8off.src = "images/student_mail.gif";
			 i10off = new Image();
             i10off.src = "images/arrow_back.gif";
             i11off = new Image();
             i11off.src = "images/arrow_top.gif";
             i12off = new Image();
             i12off.src = "images/arrow_next.gif";
			 i13off = new Image();
             i13off.src = "images/billing_acct_info.gif";
     }


     function imgAct(imgName) {
             if (version == "n3") {
             imgOn = eval(imgName + "on.src");
             document [imgName].src = imgOn;

             }

     }

     function imgInact(imgName) {
             if (version == "n3") {
             imgOff = eval(imgName + "off.src");
             document [imgName].src = imgOff;

             }

     }
//-->