<!--

function init() {

  
                window.setTimeout( "StatusClock()", 999 );

                ndate = new Date();

                self.status = ndate.toString();    

}

function monthA() {

    for (i = 0; i<monthA.arguments.length; i++)

        this[i + 1] = monthA.arguments[i];

}


function daysA() {

    for (i = 0; i<daysA.arguments.length; i++)

        this[i] = daysA.arguments[i];

}



function mil(number) { return (number < 1000) ? number + 1900 : number; }


function StatusClock() {

                window.setTimeout( "StatusClock()", 999 );

                ndate = new Date();

                self.status = ndate.toString();    

}


var months = new monthA('January','Febuary','March','April','May','June','July','August','September','October','November','December');

var days = new

daysA('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');



var today = new Date();

var day   = days[today.getDay()];

var date  = today.getDate();

var month = today.getMonth() + 1;

var year  = mil(today.getYear());



var time  = today.getTime();

var hour  = today.getHours();

var min   = today.getMinutes();

var sec   = today.getSeconds();



if(hour<=9)hour = "" + hour;

if(min<=9) min  = "" + min;

if(sec<=9) sec  = "0" + sec;



setTimeout("hour",1000);

setTimeout("min",1000);

clearTimeout(setTimeout("sec",1000));

init()
document.write('<center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 COLS=3 WIDTH="100%" HEIGHT="73" >');
document.write('<tr ALIGN=LEFT VALIGN=CENTER>');
document.write('<td ALIGN=LEFT VALIGN=TOP COLSPAN="3" WIDTH="33%"><a href="http://www.weca.net/OpenSection/Certified_Products.asp?TID=2"><img SRC="http://www.pcdust.com/images/wifi_logo.gif" BORDER=0 height=25 width=54></a></td>');
document.write('<td ALIGN=CENTER VALIGN=TOP><a href="http://www.pcdust.com"><img SRC="http://www.pcdust.com/images/pcdustsa.gif" BORDER=0 height=49 width=138></a></td>');
document.write('<td ALIGN=RIGHT VALIGN=TOP WIDTH="33%"><a href="mailto:support@pcdust.com"><img SRC="http://www.pcdust.com/images/email1.gif" BORDER=0 height=50 width=50></a><br>' + '<b>' + day + ', ' +  months[month] + ' ' + date + ', ' + year+ '</b>' + '</td>' + '</tr>');
//document.write('<br>' + '<b>' + day + ', ' +  months[month] + ' ' + date + ', ' + year+ '</b>' + '</td>' + '</tr>');
document.write('</table></center>');
