//Here is the cal_conf2.js File
/*====================================================================================================================================================
BE SURE TO ADD THE FOLLOWING LINE TO THE cal.gif
javascript:showCal('Calendar1') with Calendar1 
being the name of the calendar. Of course you can change the name if you wish.
It should be something like this:
<a href="javascript:showCal('Calendar1')"><img src="/scripts/cal/cal.gif" width="16" height="16" border="0" alt="Click here and select your date"></a>
======================================================================================================================================================*/

//Define calendar(s): addCalendar ("Unique Calendar Name", "Window title", "Form element's name", Form name")
addCalendar("Calendar1", "Select Date", "timestamp", "form1");
addCalendar("Calendar2", "Select Date", "divTimeStamp", "form2");

// default settings for English

 setFont("verdana", 9);
 setWidth(90, 1, 15, 1);
 setColor("#cccccc", "#cccccc", "#ffffff", "#ffffff", "#333333", "#cccccc", "#333333");
 setFontColor("#333333", "#333333", "#333333", "#ffffff", "#333333");
 setFormat("mm/dd/yyyy"); //Change the format as you wish
 setSize(200, 200, -200, 16);

 setWeekDay(0);
 setMonthNames("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
 setDayNames("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
 setLinkNames("[Close]", "[Clear]");
