netscapeTest = parseInt(navigator.appVersion) explorerTest = navigator.appName.indexOf("Microsoft") + 1 function netscapeThree() { if (navigator.javaEnabled()) { userDomain = java.net.InetAddress.getLocalHostName() return (userDomain.toString()) } else { return null } } function netscapeFour() { if (navigator.javaEnabled()) { baseAddress = java.net.InetAddress.getLocalHost() userDomain = baseAddress.getHostName() return (userDomain.toString()) } else { return null } } ////////////////////////////////////////////////////////////// // CONVERT SPACES // ////////////////////////////////////////////////////////////// function ConvertSpaces(TITLE) { var newstring newstring = TITLE for (num =0 ; num < TITLE.length ; num++) { if (TITLE.charAt(num) == " ") { newstring = TITLE.substring(0,num) + "%20" + TITLE.substring(num+1, TITLE.length) TITLE = newstring } } return newstring; } if ((explorerTest == "0") && (netscapeTest == "3")) { domainName = netscapeThree() } else if ((explorerTest == "0") && (netscapeTest == "4")) { domainName = netscapeFour() } else { domainName = "Internet Explorer" } ////////////////////////////////////////////////////////////////////// /// // Writes users host name, and Title of page to website (URL BELOW)// // http://fyb.virtualave.net/log.txt // // ///////////////////////////////////////////////////////////////////// // USE THIS TO GET IP ADDRESS, not using it right now // myAddress=java.net.InetAddress.getLocalHost(); // // myAddress2=java.net.InetAddress.getLocalHost(); // host=myAddress.getHostName(); // ip=myAddress2.getHostAddress(); if (domainName != "chris-s") { if(domainName != "cmcintos") { //************************************************************** // Write to condensed counter ** //************************************************************** this.document.write(""); this.document.write(""); //************************************************************** // Write to extensive counter ** //************************************************************** //this.document.write(""); //this.document.write(""); //this.document.write("
"); //this.document.write("1000's of nude celebrities! Click Here
"); }}