home *** CD-ROM | disk | FTP | other *** search
-
- function zobraz () {
- retezec=document.checkform.object.value.toUpperCase();
- delka=retezec.length;
- pozice=retezec.lastIndexOf(".");
- pozice2=retezec.indexOf(".");
- hodnota=retezec.slice(pozice,delka);
- hodnota2=retezec.substr(2);
- as=retezec.substr(0,2);
-
- if (pozice==-1) {
- if (isNaN(hodnota2)==false && as=="AS") {
- location.href = "as.result.html";
- } else {
- location.href = "default.result.html";
- }
- } else {
- if (isNaN(hodnota)==false) {
- location.href = "ip.result.html";
- } else if (hodnota==".CZ" || hodnota==".COM" || hodnota==".NET" || hodnota==".ORG" || hodnota==".GOV" || hodnota=="CO.CZ" || hodnota==".SK") {
- if(pozice==pozice2) {
- location.href = "domain.result.html";
- } else {
- location.href = "server.result.html";
- }
- } else {
- location.href = "default.result.html";
- }
- }
- }
-