home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 April / Chip_2003-04_cd1.bin / bonus / energyweb / inc / func.js < prev    next >
Text File  |  2003-02-25  |  455b  |  28 lines

  1. function OpenAdvertisment(la_adv_id,la_href,la_target)
  2. {
  3.   switch (la_target)
  4.   {
  5.     case '0':
  6.       window.open(la_href,"","");
  7.       break;
  8.  
  9.     case '1':
  10.       document.location = la_href;
  11.       break;
  12.   }
  13. }
  14.  
  15. function SimpleSearch()
  16. {
  17.    document.location = "search.htm?advanced=0";
  18. }
  19.  
  20. function AdvancedSearch()
  21. {
  22.    document.location = "search.htm?advanced=1";
  23. }
  24.  
  25. function HomePage()
  26. {
  27.    document.location = "index.htm";
  28. }