function LinkWindow(Obj) {
window.open(Obj.href);
return false;

}

function ButtonHoverFx(Obj) {
 document.getElementById("Controler_Hover").className = Obj;
}

function BtnHover(Obj) {
 Temp = Obj.src;
 if (!Temp.indexOf("_Hover.") > -1) {
  Obj.src = Temp.substring(0, Temp.length - 4) + "_Hover" + Temp.substring(Temp.length - 4);
 }
}

function BtnOff(Obj) {
 Temp = Obj.src;
 if (Temp.indexOf("_Hover.") > -1) {
  Obj.src = Temp.substring(0, Temp.length - 10) + Temp.substring(Temp.length - 4);
 }
}