home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 2 / chip_20018102_hu.iso / chipweb / script / menu1.js < prev    next >
Text File  |  2000-04-12  |  2KB  |  63 lines

  1. <!--
  2.  
  3. tartalom_on = new Image(); tartalom_on.src = "images/tart_on.gif";
  4. tartalom_off = new Image(); tartalom_off.src = "images/tart_off.gif";
  5.  
  6. amiga_on = new Image(); amiga_on.src = "images/amig_on.gif";
  7. amiga_off = new Image(); amiga_off.src = "images/amig_off.gif";
  8.  
  9. beos_on = new Image(); beos_on.src = "images/beos_on.gif";
  10. beos_off = new Image(); beos_off.src = "images/beos_off.gif";
  11.  
  12.  
  13. bemutatok_on = new Image(); bemutatok_on.src = "images/bemu_on.gif";
  14. bemutatok_off = new Image(); bemutatok_off.src = "images/bemu_off.gif";
  15.  
  16. cikkekhez_on = new Image(); cikkekhez_on.src = "images/cikk_on.gif";
  17. cikkekhez_off = new Image(); cikkekhez_off.src = "images/cikk_off.gif";
  18.  
  19. driverek_on = new Image(); driverek_on.src = "images/driv_on.gif";
  20. driverek_off = new Image(); driverek_off.src = "images/driv_off.gif";
  21.  
  22. grafika_on = new Image(); grafika_on.src = "images/graf_on.gif";
  23. grafika_off = new Image(); grafika_off.src = "images/graf_off.gif";
  24.  
  25. internet_on = new Image(); internet_on.src = "images/inet_on.gif";
  26. internet_off = new Image(); internet_off.src = "images/inet_off.gif";
  27.  
  28. linux_on = new Image(); linux_on.src = "images/linx_on.gif";
  29. linux_off = new Image(); linux_off.src = "images/linx_off.gif";
  30.  
  31. olvasok_on = new Image(); olvasok_on.src = "images/olva_on.gif";
  32. olvasok_off = new Image(); olvasok_off.src = "images/olva_off.gif";
  33.  
  34. os2_on = new Image(); os2_on.src = "images/osp2_on.gif";
  35. os2_off = new Image(); os2_off.src = "images/osp2_off.gif";
  36.  
  37. programozas_on = new Image(); programozas_on.src = "images/prog_on.gif";
  38. programozas_off = new Image(); programozas_off.src = "images/prog_off.gif";
  39.  
  40. sac_on = new Image(); sac_on.src = "images/sac_on.gif";
  41. sac_off = new Image(); sac_off.src = "images/sac_off.gif";
  42.  
  43. vegyes_on = new Image(); vegyes_on.src = "images/vegy_on.gif";
  44. vegyes_off = new Image(); vegyes_off.src = "images/vegy_off.gif";
  45.  
  46. star_on = new Image(); star_on.src = "images/star_on.gif";
  47. star_off = new Image(); star_off.src = "images/star_off.gif";
  48.  
  49. function Icon_on(imgname)
  50. {
  51.         document[imgname].src=eval(imgname+"_on.src");
  52.         window.status = 'Open';
  53.         return true;
  54. }
  55.  
  56. function Icon_off(imgname)
  57. {
  58.         document[imgname].src=eval(imgname+"_off.src");
  59.         window.status = '';
  60.         return true;
  61. }
  62.  
  63. // -->