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