I have a web page with a counter from newgenstat on it. the code is java script code. I have to go to their site to check up on the counter info. Everything seems fine but the time is off. Its 5 hours too fast. If I visit my own page at 1 pm, it says it was 6 pm. Here is the portion of the script with the date and time command, can i alter it to give the correct time? thanx.
java = ((navigator.javaEnabled() == 1) ? "y" : "n");
ref = document.referrer;
max = 100;
day = new Date();
myz = day.getTime();
myy = (myz - (parseInt(myz/1000,10) * 1000))/10;
myx = parseInt(myy/100*max,10) + 1;
War
java = ((navigator.javaEnabled() == 1) ? "y" : "n");
ref = document.referrer;
max = 100;
day = new Date();
myz = day.getTime();
myy = (myz - (parseInt(myz/1000,10) * 1000))/10;
myx = parseInt(myy/100*max,10) + 1;
War