//===========================================
//  BWSTPL Ver2 Functions
//-------------------------------------------
//---- Click To URL ----
function bwstplf_090(o){
    if(o.options[o.selectedIndex].value!="") window.open(o.options[o.selectedIndex].value,"_top");
}
//===========================================
//  BWSTPL Ver3 Functions
//-------------------------------------------
//---- Main(Ver3.0) ----
function bwstplf300(){
    bwstplf320();                       //IMENU Active Set
        return false;
}
//---- STYLE ID Chenge ----
function bwstplf310(o,id){
    o.id=id;
        return true;
}
//---- image swap(active set) ----
function bwstplf320(){
  var bws_imgc=0;
  var bws_di = document.images;
  var bws_img_max = document.images.length;
  for(bws_lpc=0;bws_lpc<bws_img_max;bws_lpc++){
      if(document.images[bws_lpc].name.substr(0,8)=='bwsmnACT'){
          document.images[bws_lpc].src = document.images[bws_lpc].src.replace(/_of/i,'_act');
      }
  }
  return true;
}
//---- image swap(over) ----
function bwstplf330(o){
    o.src = o.src.replace(/_of/i,'_on')
    return true;
}
//---- image swap(out) ----
function bwstplf340(o){
    o.src = o.src.replace(/_on/i,'_of')
    return true;
}
//=======================================
//  Other Functions
//---------------------------------------
