function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
        if (browserVer >= 3) {
            version = "n3";
        }
        else version = "n2";
        if (version == "n3")
{
        s1on = new Image;
        s1on.src = "/static/images/fr_3b_ford_r.gif";
        s1off = new Image;
        s1off.src = "/static/images/fr_3b_ford.gif";
        s2on = new Image;
        s2on.src = "/static/images/fr_3b_fpv_r.gif";
        s2off = new Image;
        s2off.src = "/static/images/fr_3b_fpv.gif";
        s3on = new Image;
        s3on.src = "/static/images/fr_3b_fpr_r.gif";
        s3off = new Image;
        s3off.src = "/static/images/fr_3b_fpr.gif";
}

function img_act(imgName)
{
  if (version == "n3")
 {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
        }
}

function img_inact(imgName)
{
  if (version == "n3")
        {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
        }
}
