home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 November / Chip_2001-11_cd1.bin / internet / neknihy / nkn_files / q_button.js < prev    next >
Text File  |  2001-09-05  |  1KB  |  37 lines

  1. function openWindow()
  2. {
  3.   gateServer = (document.test) ? 1 : 0;
  4.  
  5.   if (gateServer)
  6.     URL = "http://gate.villusion.com/ilikeq/ext/" + serverName + ".xml";
  7.   else
  8.     URL = "http://www.ilikeq.cz/ilikeq/ext/" + serverName + ".xml";
  9.  
  10.   parentWindow = window.open(URL, "ILIKEQUseqWindow", "status=no,menubar=no,location=yes,resizable=yes,width=490,height=490,scrollbars");
  11. }
  12.  
  13. imageName = 'useq.gif';
  14.  
  15. /* dvoustavovy buton
  16. if (cookieName != "")  // server uses PHP or ASP library
  17. {
  18.   imageName = 'useq_logout.gif';
  19.   if (document.cookie.length > 0)
  20.   {
  21.     offset = document.cookie.indexOf(cookieName + "=");
  22.     if (offset != -1) // I've found my cookie 
  23.     {
  24.       offset = document.cookie.indexOf("logoff", offset + cookieName.length + 1);
  25.       if (offset == -1) // cookie with SID
  26.         imageName = 'useq_login.gif';
  27.     }
  28.   }
  29. }
  30. else  // server doesn't use PHP or ASP library
  31. {
  32.   imageName = 'useq.gif';
  33. }
  34. */
  35.  
  36. document.write('<a href="javascript:openWindow()"><img src="http://www.ilikeq.cz/images/' + imageName + '" width="88" height="31" border="0" alt="Pou₧φvßme Q"></a>');
  37.