// JavaScript Document
theDate= new Date();
months = new Array();
days = new Array();
months[1] ='thisdates/jan.gif';
months[2] = 'thisdates/feb.gif';
months[3] ='thisdates/mar.gif';
months[4] ='thisdates/apr.gif';
months[5] ='thisdates/may.gif';
months[6] ='thisdates/jun.gif';
months[7] ='thisdates/jul.gif';
months[8] ='thisdates/aug.gif';
months[9] ='thisdates/sep.gif';
months[10] ='thisdates/oct.gif';
months[11] ='thisdates/nov.gif';
months[12] ='thisdates/dec.gif';
days[1] ='thisdates/1th.gif';
days[2] ='thisdates/2th.gif';
days[3] ='thisdates/3th.gif';
days[4] ='thisdates/4th.gif';
days[5] ='thisdates/5th.gif';
days[6] ='thisdates/6th.gif';
days[7] ='thisdates/7th.gif';
days[8] ='thisdates/8th.gif';
days[9] ='thisdates/9th.gif';
days[10] ='thisdates/10th.gif';
days[11] ='thisdates/11th.gif';
days[12] ='thisdates/12th.gif';
days[13] ='thisdates/13th.gif';
days[14] ='thisdates/14th.gif';
days[15] ='thisdates/15th.gif';
days[16] ='thisdates/16th.gif';
days[17] ='thisdates/17th.gif';
days[18] ='thisdates/18th.gif';
days[19] ='thisdates/19th.gif';
days[20] ='thisdates/20th.gif';
days[21] ='thisdates/21th.gif';
days[22] ='thisdates/22th.gif';
days[23] ='thisdates/23th.gif';
days[24] ='thisdates/24th.gif';
days[25] ='thisdates/25th.gif';
days[26] ='thisdates/26th.gif';
days[27] ='thisdates/27th.gif';
days[28] ='thisdates/28th.gif';
days[29] ='thisdates/29th.gif';
days[30] ='thisdates/30th.gif';
days[31] ='thisdates/31th.gif';
function printDate() {
document.write( '<img src="' + months[theDate.getMonth()+1] + '">'); // month
document.write('<br>');
document.write('<img src="' + days[theDate.getDate()] + '">'); // day
//var onClick = window.open('testsite/retest');
//<!-- link="#000066" vlink="#000066" alink="#000099" -->
}