{

graphic1= new Image();
graphic1.src = "/images/sbar1.gif";
graphic1on = new Image();
graphic1on.src = "/images/sbar1_on.gif";

graphic2= new Image();
graphic2.src = "/images/sbar2.gif";
graphic2on = new Image();
graphic2on.src = "/images/sbar2_on.gif";

graphic3= new Image();
graphic3.src = "/images/sbar3.gif";
graphic3on = new Image();
graphic3on.src = "/images/sbar3_on.gif";

}
function imageChange(imageID,imageName,imageID2,imageName2) {


{
document.images[imageID].src = eval(imageName + ".src");
}

}

function goto_URL(str) {
    // str is in the form <windowName>,<URL>
    // If <windowName> is "self", <URL> is opened in the current window;
    // otherwise, <URL> is opened in a new window named <windowName>
    var field=str.split(",");
    if(field[0]=="self"){
      location=field[1];
   }else{   window.open(field[1],field[0]);
  }
}