home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 April / PCWorld_2004-04_cd.bin / software / temacd / webman / wmsetup.msi / Instal01.cab / _E85B51DAB52A4AB689103C5F1B06CC66 < prev    next >
Text File  |  2002-10-31  |  1KB  |  25 lines

  1. // *****************************************************************
  2. //
  3. //    Website Manager Javascript functions
  4. //    Copyright (c) Invicta Trading & Promotion HB 2002
  5. //
  6. // *****************************************************************
  7.  
  8. function wm_playbgs(szsrc,szvol,szbal,szloop) {
  9.  
  10. // Plays background sound in two different ways, depending on the browser
  11.  
  12.    if(navigator.userAgent.indexOf("MSIE") != -1)
  13.       document.writeln('<BGSOUND BALANCE="'+szbal+'" VOLUME="'+szvol+'" LOOP="'+szloop+'" SRC="'+szsrc+'">');
  14.    else {
  15.       document.write('<EMBED SRC="'+szsrc+'" AUTOSTART="true" HIDDEN="true" BALANCE="'+szbal+'" LOOP="'+szloop+'" VOLUME="'+szvol+'"></EMBED>');
  16.    }
  17.  
  18. }
  19.  
  20. // Open file in a new window
  21.  
  22. function opn_wndw(szurl,szwidth,szheight,blscroll,blsizable,szcaption) {
  23.     window.open(szurl,szcaption,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + blscroll + ",resizable=" + blsizable + ",copyhistory=yes,width=" + szwidth + ",height=" + szheight + ",top=0,left=0");
  24. }
  25.