Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Related items

Born on the 4th of July

The Chinese New Year

What sign are you?

Monday's child is full of grace

32 years 8 months 24 days

Blind Date

Travelling Through Time

Time of Day

Date Spinner

Calendars- source1

You are here: irt.org | Articles | JavaScript | Date and Time | Calendars [ next ]

Published on: Sunday 1st December 1996 By: Martin Webb

calendar.htm source code

<head>

<title>Popop Calendar</title>

</head>

<script language="JavaScript"><!--
function y2k(number) {
  return (number < 1000) ? number + 1900 : number;
}

var today = new Date();
var year  = y2k(today.getYear());
var month = today.getMonth();
//--></script>

<frameset frameborder="0" framespacing="0" rows="100%,*">
<frame scrolling="no" 
  frameborder="0"
  marginheight="0"
  marginwidth="0"
  name="cal"
  noresize
  src="cal.htm">
</frameset>

</html>

Related items

Born on the 4th of July

The Chinese New Year

What sign are you?

Monday's child is full of grace

32 years 8 months 24 days

Blind Date

Travelling Through Time

Time of Day

Date Spinner

©2018 Martin Webb