Dette virker:
<HTML>
<HEAD>
<TITLE>Test</TITLE>
<SCRIPT language=javascript type=text/javascript>
function formBg(field) {
field.style.background='black';
field.style.color='white';
}
function formBgB(field) {
field.style.background='white';
field.style.color='black';
}
function rename(file) {
document.getElementById('old').value=file;
document.getElementById('new').value=file;
}
function newWin(url) {
editWin = window.open(url,'editor','width=800, height=600, toolbar=no,
menubar=no, location=no, scrollbar=no, status=no, resizable=yes, fullscreen=no');
}
<!-- Begin
function MakeArrayday(size) {
this.length = size;
for(var i = 1; i <= size; i++) {
this[i] = "";
}
return this;
}
function
MakeArraymonth(size) {
this.length = size;
for(var i = 1; i <= size; i++) {
this[i] = "";
}
return this;
}
function funClock() {
//if
(!document.layers && !document.all)
var runTime = new Date();
var hours = runTime.getHours();
var minutes = runTime.getMinutes();
var seconds
= runTime.getSeconds();
if (minutes <= 9) {
minutes = "0" + minutes;
}
if (seconds <= 9) {
seconds = "0" + seconds;
}
movingtime = hours +
":" + minutes + ":" + seconds + " ";
if (document.layers) {
document.layers.clock.document.write(movingtime);
document.layers.clock.document.close();
}
else if (document.all) {
uret.innerHTML = movingtime;
}
else {
document.getElementById("uret").innerHTML = movingtime;
}
setTimeout("funClock()", 1000)
}
window.onload = funClock;
var day="";
var
month="";
var myweekday="";
var year="";
newdate = new Date();
mydate = new Date();
dston = new Date('April 4, 1999 2:59:59');
dstoff = new
Date('october 31, 1999 2:59:59');
var myzone = newdate.getTimezoneOffset();
newtime=newdate.getTime();
var zone = 1; // references your
time zone
if (newdate > dston && newdate < dstoff ) {
zonea = zone - 1 ;
dst = " Pacific Daylight Savings Time";
}
else {
zonea = zone ;
dst = " Pacific Standard Time";
}
var newzone = (zonea*60*60*1000);
newtimea = newtime+(myzone*60*1000)-newzone;
mydate.setTime(newtimea);
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
myyear= mydate.getYear();
year = myyear;
if (year < 2000)
// Y2K Fix, Isaac Powell
year = year + 1900; //
http://onyx.idbsu.edu/~ipowellmyhours = mydate.getHours();
if (myhours >= 12) {
myhours =
(myhours == 12) ? 12 : myhours - 12; mm = " PM";
}
else {
myhours = (myhours == 0) ? 12 : myhours; mm = " AM";
}
myminutes =
mydate.getMinutes();
if (myminutes < 10){
mytime = ":0" + myminutes;
}
else {
mytime = ":" + myminutes;
};
arday = new
Array("søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag")
armonth = new Array("januar ","februar ","marts ","april ","maj
","juni ","juli ","august ","september ", "oktober ","november ","december ")
ardate = new
Array("0th","1.","2.","3.","4.","5.","6.","7.","8.","9.","10.","11.","12.","13.","14.","15.","16.","17.","18.","19.","20.","21.","22.","23.",
"24.","25.","26.","27.","28.","29.","30.","31.")
// rename locale as needed.
var time = (ardate[myweekday] + " " + armonth[mymonth] + year +
"<br><img src=\"images/tid.png\"> ");
document.write(time);
//-->
</SCRIPT>
</HEAD>
<BODY>
<DIV class=menupunkt>
<DIV id=uret style="POSITION: relative"></DIV></DIV>
</body>
</html>