home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 December / Chip_2003-12_cd1.bin / chplus / whois / script.js < prev    next >
Text File  |  2003-09-26  |  836b  |  31 lines

  1.  
  2. function zobraz () {
  3.     retezec=document.checkform.object.value.toUpperCase();
  4.     delka=retezec.length;
  5.     pozice=retezec.lastIndexOf(".");
  6.     pozice2=retezec.indexOf(".");
  7.     hodnota=retezec.slice(pozice,delka);
  8.     hodnota2=retezec.substr(2);
  9.     as=retezec.substr(0,2);
  10.  
  11.     if (pozice==-1) {
  12.         if (isNaN(hodnota2)==false && as=="AS") {
  13.             location.href = "as.result.html";
  14.         } else {
  15.             location.href = "default.result.html";
  16.         }
  17.     } else {
  18.         if (isNaN(hodnota)==false) {
  19.             location.href = "ip.result.html";
  20.         } else if (hodnota==".CZ" || hodnota==".COM" ||  hodnota==".NET" || hodnota==".ORG" || hodnota==".GOV" || hodnota=="CO.CZ" || hodnota==".SK") {
  21.             if(pozice==pozice2) {
  22.                 location.href = "domain.result.html";
  23.             } else {
  24.                 location.href = "server.result.html";
  25.             }
  26.         } else {
  27.             location.href = "default.result.html";
  28.         }
  29.     }        
  30. }
  31.