From: "Kemal Abuhan" <[EMAIL PROTECTED]>
Subject: Re: Windows code for date

Here ya go...

<SCRIPT LANGUAGE=javascript1.1>
        <!-- Hide from old browsers

                now = new Date();
                day = new Object();
                month = new Object();

                day[0] = "Sunday";
                day[1] = "Monday";
                day[2] = "Tuesday";
                day[3] = "Wednesday";
                day[4] = "Thursday";
                day[5] = "Friday";
                day[6] = "Saturday";
                month[0] = "Jan.";
                month[1] = "Feb.";
                month[2] = "March";
                month[3] = "April";
                month[4] = "May";
                month[5] = "June";
                month[6] = "July";
                month[7] = "Aug.";
                month[8] = "Sept.";
                month[9] = "Oct.";
                month[10] = "Nov.";
                month[11] = "Dec.";
                year = now.getYear();
                if (year < 1000) year += 1900;
                document.write(day[now.getDay()] + ", " + month[now.getMonth()] + " " +
now.getDate() + ", " + year);
        // Stop Hiding From Old Browsers -->
        </SCRIPT>

Sincerely,
Kemal
___

*******************************************************
The RealForum is an email discussion group focused on using RealNetworks
products. The RealForum is a place to post messages about the best methods
for creating content using RealNetworks technologies and the planning and
implementation of streaming-media web sites.  Archives of RealForum can
be found at http://realforum.real.com

If you ever want to remove yourself from this mailing list,
you can send mail to <[EMAIL PROTECTED]> with the following
command in the body of your email message:

    unsubscribe realforum

or from another account, besides the address you subscribed with:

    unsubscribe realforum <[EMAIL PROTECTED]>

Reply via email to