load = 0;
var GNavi = new Array('top','radio','gourmet','comfort','acce');
var LNavi = new Array('basket','regist');
var Bt    = new Array('put');
var on   = new Array();
var off  = new Array();

for(i=0; i < GNavi.length; i++){
   on[GNavi[i]]   = new Image();
   off[GNavi[i]]  = new Image();
   on[GNavi[i]].src  = "/shopping/shared/gnavi_" + GNavi[i] + "_on.gif";
   off[GNavi[i]].src = "/shopping/shared/gnavi_" + GNavi[i] + "_off.gif";
}
for(i=0; i < LNavi.length; i++){
   on[LNavi[i]]   = new Image();
   off[LNavi[i]]  = new Image();
   on[LNavi[i]].src  = "/shopping/shared/leftnavi_" + LNavi[i] + "_on.gif";
   off[LNavi[i]].src = "/shopping/shared/leftnavi_" + LNavi[i] + "_off.gif";
}
for(i=0; i < Bt.length; i++){
   on[Bt[i]]   = new Image();
   off[Bt[i]]  = new Image();
   on[Bt[i]].src  = "/shopping/shared/bt_" + Bt[i] + "_on.gif";
   off[Bt[i]].src = "/shopping/shared/bt_" + Bt[i] + "_off.gif";
}

function OnImage(name){
   if(load) document.images[name].src = on[name].src;
}
function OffImage(name){
   if(load) document.images[name].src = off[name].src;
}

function WinOpen(width,height,url,flag){
   var locationbar = (flag) ? "yes" : "no";
   var wo = window.open(url,"_blank","toolbar=no,location=" + locationbar +  ",directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + "\"");
       wo.focus();
}
