home *** CD-ROM | disk | FTP | other *** search
/ PC Active 2001 March / PCA1303.BIN / intface / INHOUD.JS < prev    next >
Encoding:
Text File  |  2001-01-24  |  4.1 KB  |  82 lines

  1. /*
  2. versie 1 inhoudsopgave: AvG
  3. */
  4.  
  5. // PC-Active
  6. specialTitel = new Array();
  7. //specialTitel[1]  = new Array("Cursus Java deel 9", "special1/index.htm", "In dit deel van de cursus gaan we in op enkele vragen lezers.");
  8. specialTitel[1]  = new Array("Hoe werken routeplanners", "special2/index.htm", "Softwaredemo's van routeplanners zijn er bijna niet. Daarom maakten we screenshots van enkele routeplanners, zodat u de interface van de software kunt beoordelen.");
  9. specialTitel[2]  = new Array("TCP/IP bootflop", "special3/index.htm", "In deze HandsOn maken we een zeer waardevolle bootdiskette. U kunt er Windows mee installeren over het netwerk met slechts één druk op de knop.<p>Doorzettingsvermogen is echter vereist voor deze HandsOn!");
  10. specialTitel[3]  = new Array("Cursus Midi", "special4/index.htm", "De bij de cursus Midi behorende midi-bestanden.");
  11. //specialTitel[4]  = new Array("Bouw uw eigen netwerk", "special5/index.htm", "Met deze maand twee programma's: VNC (remote display) en Netmeeting (chat).");
  12. specialTitel[4]  = new Array("Homepage-prijsvraag: enkele inzendingen", "special6/index.htm", "Op de prijsvraag in het januarinummer, waarin we u vroegen een nieuwe homepage voor PC-Active te ontwerpen, kregen we 16 inzendingen binnen.");
  13.  
  14. var aantalSpecials = specialTitel.length - 1;
  15.  
  16. pcaRubriek = new Array();
  17. pcaRubriek[1] =  new Array("Jewelcase inlay", "jewelcase.pca", "Klaar om te printen.");
  18. pcaRubriek[2] =  new Array("Anti-virus updates", "antivir/index.htm", "Updates voor uw virusscanner.");
  19. pcaRubriek[3] =  new Array("Essentiële software", "tools/index.htm", "Kijk iedere maand even in deze sectie voor de nieuwste updates op belangrijke en handige software.<p>Deze maand o.a. DirectX 8.0, Netscape 6.0 en Internet Explorer 5.5 SP1.");
  20. var aantalPCARubrieken = pcaRubriek.length - 1;
  21.  
  22. pcaPopupItem = new Array();
  23. pcaPopupItem[1] = new Array("Providerlijst", "provlist/provlist.htm", "Alle internetproviders in Nederland en België.");
  24. pcaPopupItem[2] = new Array("Gratis mailproviders", "mailprov/mailprov.htm", "Gratis mailadres nodig?");
  25. pcaPopupItem[3] = new Array("PC-Active Archief", "index.pca", "In welk nummer stond dat artikel ook al weer? Zoek het op in ons archief.");
  26. pcaPopupItem[4] = new Array("Boekendatabase", "boeken.pca", "Korte beschrijvingen van computerboeken, inclusief prijs en isbn.");
  27. var aantalPCAPopupItems = pcaPopupItem.length - 1;
  28.  
  29. // Software
  30. demoTitel = new Array()
  31. demoTitel[1] = "Paint Shop Pro 7 NL";
  32. demoTitel[2] = "Opera 5";
  33. demoTitel[3] = "Beeldschermtachograaf";
  34. demoTitel[4] = "Magix Music Studio 6";
  35. demoTitel[5] = "ADBplus 2000 Special";
  36.  
  37. var aantalDemos  = (demoTitel.length - 1 < 10 ? "0" : "") + (demoTitel.length - 1).toString();
  38.  
  39. gameTitel = new Array()
  40. gameTitel[1] = "Oni";
  41. gameTitel[2] = "Colin McRae";
  42. var aantalGames = gameTitel.length - 1;
  43.  
  44. var sharewareSpecial = "Special: browsers";
  45.  
  46.  
  47. function maakBeschrijvingen()
  48. {    for (var i = 1; i <= aantalSpecials; i++)
  49.     {    omschrijving = eval('specialTitel[' + i + '][2]');
  50.         dw('<div class=pcaPopup id=popupspecial' + i + '>');
  51.         dw(omschrijving);
  52.         dw('</div>');
  53.     }
  54.     for (var i = 1; i <= aantalPCARubrieken; i++)
  55.     {    omschrijving = eval('pcaRubriek[' + i + '][2]');
  56.         dw('<div class=pcaPopup id=popuprubriek' + i + '>');
  57.         dw(omschrijving);
  58.         dw('</div>');
  59.     }
  60.     for (var i = 1; i <= aantalPCAPopupItems; i++)
  61.     {    omschrijving = eval('pcaPopupItem[' + i + '][2]');
  62.         dw('<div class=pcaPopup id=popuppcaPopupItem' + i + '>');
  63.         dw(omschrijving);
  64.         dw('</div>');
  65.     }
  66.  
  67. }
  68.  
  69. // =======  Genereren inhoudsopgave  ======= //
  70.  
  71. function toonInhoud()
  72. {    popupWeergave       = "resizable=no,status=no,scrollbars=yes";
  73.     bestand = "../inhoud.htm?" + parent.parent.script.MuziekAan + "," + parent.parent.script.DitNummer + "," + parent.parent.script.DitVolume + "," + PCAinterfaceX + "," + PCAinterfaceY;
  74.  
  75.     popupBreedte = 251;
  76.     popupHoogte  = 480;
  77.     inhoudTop    = PCAinterfaceY;
  78.     inhoudLinks  = 10;
  79.     lokaalVenster = window.open(bestand, "Inhoudsopgave", "width =" + popupBreedte + ",height =" + popupHoogte + "," + PositieY + "=" + inhoudTop + "," + PositieX + "=" + inhoudLinks + popupWeergave)
  80. }
  81.  
  82.