still no go, heres the called .js
/////////////
//Live Clock test script for phpnuke module
//
//Created by xxxxxxxxxxxx(Eledemar) (xxxxxxxxxxxxxx)
//modification from script found at dynamicdrive.com
//
///////////////////
////Configuration///////////////
//set font face
var font_face="Trebuchet MS";
//set font size
var font_size="8";
//set color
var font_color="#000000";
//set background
var font_background="#ffffff";
//set pre text
var pre_text="Server Local Time is:";
//set width
var c_width=400;
//set var for 24h time
var c_display=0;
//set var for update
var myupdate=1;
///end configuraion
////////////////////////
var ie4=document.all
var ns4=document.layers
var ns6=document.getElementById&&!document.all
var dn="";
var mn="th";
var old="";
var ClockUpdate=new Array(3);
ClockUpdate[0]=0;
ClockUpdate[1]=1000;
ClockUpdate[2]=60000;
// For Version 4+ browsers, write the appropriate HTML to the
// page for the clock, otherwise, attempt to write a static
// date to the page.
if (ie4||ns6) { document.write('<span id="LiveClockIE" style="width:'+c_width+'px; background-color:'+font_background+'"></span>'); }
else if (document.layers) { document.write('<ilayer bgColor="'+font_background+'" id="ClockPosNS" visibility="hide"><layer width="'+c_width+'"
id="LiveClockNS"></layer></ilayer>'); }
else { old = "true"; show_clock(); }
// The main part of the script:
function show_clock() {
if (old == "die") { return; }
//show clock in NS 4
if (ns4)
document.ClockPosNS.visibility="show"
// Get all our date variables:
var hours = <?php echo Date('H')?>;
var minutes = <?php echo Date('i')?>;
var seconds = <?php echo Date('s')?>;
/// var Digital = new Date();
/// var hours = Digital.getHours();
/// var minutes = Digital.getMinutes();
/// var seconds = Digital.getSeconds();
// Fix the "mn" variable if needed:
// Set up the hours for either 24 or 12 hour display:
if (minutes <= 9) { minutes = "0"+minutes; }
if (seconds <= 9) { seconds = "0"+seconds; }
// This is the actual HTML of the clock. If you're going to play around
// with this, be careful to keep all your quotations in tact.
myclock = '';
myclock += '<font style="color:'+font_color+'; font-family:'+font_face+'; font-size:'+font_size+'pt;">';
myclock += pre_text;
myclock += hours+':'+minutes;
if ((myupdate < 2) || (myupdate == 0)) { myclock += ':'+seconds; }
myclock += ' '+dn;
myclock += '</font>';
if (old == "true") {
document.write(myclock);
old = "die";
return;
}
// Write the clock to the layer:
if (ns4) {
clockpos = document.ClockPosNS;
liveclock = clockpos.document.LiveClockNS;
liveclock.document.write(myclock);
liveclock.document.close();
} else if (ie4) {
LiveClockIE.innerHTML = myclock;
} else if (ns6){
document.getElementById("LiveClockIE").innerHTML = myclock;
}
if (myupdate != 0) { setTimeout("show_clock()",ClockUpdate[myupdate]); }
}