  OffImgArr = new Array(15);
  OnImgArr = new Array(15);
  for (i=0;i<15;i++){
    OffImgArr[i]=new Image;
    OnImgArr[i] =new Image;
  }  
  
  OnImgArr[0].src = "resim/firintas1.gif";
  OffImgArr[0].src ="resim/firintas.gif";
  OnImgArr[1].src = "resim/yemek1.gif";
  OffImgArr[1].src ="resim/yemek.gif";
  OnImgArr[2].src = "resim/yatak1.gif";
  OffImgArr[2].src ="resim/yatak.gif";
  OnImgArr[3].src = "resim/koltuk1.gif";
  OffImgArr[3].src ="resim/koltuk.gif";  
  OnImgArr[4].src = "resim/aksesuar1.gif";
  OffImgArr[4].src ="resim/aksesuar.gif";  
  OnImgArr[5].src = "resim/bayilik1.gif";
  OffImgArr[5].src ="resim/bayilik.gif";  
  OnImgArr[6].src = "resim/satis1.gif";
  OffImgArr[6].src ="resim/satis.gif";  
  OnImgArr[7].src = "resim/eposta1.gif";
  OffImgArr[7].src ="resim/eposta.gif";  

  
      
function ShowImage(imageName,imageNo,Status){
  Status?imageName.src=OnImgArr[imageNo].src:imageName.src=OffImgArr[imageNo].src;
}

function ShowSecurity(){
  var RicName = document.forms[0].Security.options[document.forms[0].Security.selectedIndex].value;
  if (document.forms[0].Security.options.length>1){
    parent.topwin.OpenSecurityWindow(RicName);
  }
}


