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

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