Hallo Thomas,
Gibt es in JavaScript eine Variable, in der die IP-Adresse des Rechners gespeichert ist, welcher das Script gerade ausführt?
probiere mal folgendes - funktioniert zumindest ab NS 4.0x
localipinfo=java.net.InetAddress.getLocalHost();
ip=localipinfo.getHostAddress();
document.write("Your IP address is " +ip+ "<br>");
Günter