// JavaScript Document

function imgborder(id,theaction) {
if(theaction=="on") {
document.getElementById(id).className="imageborder_on";
}
else {
document.getElementById(id).className="imageborder_off";
}
}

function brands_border(id,theaction) {
if(theaction=="on") {
document.getElementById(id).className="brands_border_on";
}
else {
document.getElementById(id).className="brands_border_off";
}
}
