I have a calendar control on my webpage, when I run it in preview it works, when i run it in IE I get the
error "Calendar1 is undefined". Can someone help me figure out how to correctly use this control? Thanks.

This is my code:

<script language="JScript" runat="server">
var oDate = new Date();
Session("sMonth") = oDate.getMonth() + 1 + "/";
Session("sDay") = oDate.getDate() + "/";
Session("sYear") = oDate.getYear();
</script>
<script language=JScript>
function ShowDate()
{
window.alert(Calendar1.Month + "/" + Calendar1.Day + "/" + Calendar1.Year + "\r\n" + Calendar2.Month + "/" +
Calendar2.Day + "/" + Calendar2.Year);
}
</script>
<table class=innertable>
<tr height=20>
<td>
Select Starting Date:
</td>
<td>
Select Ending Date:
</td>
</tr>
<tr valign=top height=50>
<td width=50>
<OBJECT id=Calendar1 style="LEFT: 0px; TOP: 0px"classid=clsid:8E27C92B-1264-101C-8A2F-040224009C02
VIEWASTEXT>
<PARAM NAME="_Version" VALUE="524288">
<PARAM NAME="_ExtentX" VALUE="6000">
<PARAM NAME="_ExtentY" VALUE="4000">
<PARAM NAME="_StockProps" VALUE="1">
<PARAM NAME="BackColor" VALUE="16777215">
<PARAM NAME="Year" VALUE="<%=Session("sYear")%>">
<PARAM NAME="Month" VALUE="<%=Session("sMonth")%>">
<PARAM NAME="Day" VALUE="<%=Session("sDay")%>">
<PARAM NAME="DayLength" VALUE="1">
<PARAM NAME="MonthLength" VALUE="1">
<PARAM NAME="DayFontColor" VALUE="0">
<PARAM NAME="FirstDay" VALUE="7">
<PARAM NAME="GridCellEffect" VALUE="0">
<PARAM NAME="GridFontColor" VALUE="10485760">
<PARAM NAME="GridLinesColor" VALUE="10485760">
<PARAM NAME="ShowDateSelectors" VALUE="-1">
<PARAM NAME="ShowDays" VALUE="-1">
<PARAM NAME="ShowHorizontalGrid" VALUE="-1">
<PARAM NAME="ShowTitle" VALUE="-1">
<PARAM NAME="ShowVerticalGrid" VALUE="0">
<PARAM NAME="TitleFontColor" VALUE="10485760">
<PARAM NAME="ValueIsNull" VALUE="0">
</OBJECT>
</td>
<td>
<OBJECT id=Calendar2 style="LEFT: 0px; TOP: 0px"classid=clsid:8E27C92B-1264-101C-8A2F-040224009C02
VIEWASTEXT>
<PARAM NAME="_Version" VALUE="524288">
<PARAM NAME="_ExtentX" VALUE="6000">
<PARAM NAME="_ExtentY" VALUE="4000">
<PARAM NAME="_StockProps" VALUE="1">
<PARAM NAME="BackColor" VALUE="16777215">
<PARAM NAME="Year" VALUE="<%=Session("sYear")%>">
<PARAM NAME="Month" VALUE="<%=Session("sMonth")%>">
<PARAM NAME="Day" VALUE="<%=Session("sDay")%>">
<PARAM NAME="DayLength" VALUE="1">
<PARAM NAME="MonthLength" VALUE="1">
<PARAM NAME="DayFontColor" VALUE="0">
<PARAM NAME="FirstDay" VALUE="7">
<PARAM NAME="GridCellEffect" VALUE="0">
<PARAM NAME="GridFontColor" VALUE="10485760">
<PARAM NAME="GridLinesColor" VALUE="10485760">
<PARAM NAME="ShowDateSelectors" VALUE="-1">
<PARAM NAME="ShowDays" VALUE="-1">
<PARAM NAME="ShowHorizontalGrid" VALUE="-1">
<PARAM NAME="ShowTitle" VALUE="-1">
<PARAM NAME="ShowVerticalGrid" VALUE="0">
<PARAM NAME="TitleFontColor" VALUE="10485760">
<PARAM NAME="ValueIsNull" VALUE="0">
</OBJECT>
</td>
</tr>
<tr valign=top>
<td>
<input id=startdate name=startdate type=text value="mm/dd/yyyy">
</td>
<td>
<input id=enddate name=enddate type=text value="mm/dd/yyyy">
</td>
</tr>
<tr>
<td><INPUT id="btnShow" type=button value=Button onclick="ShowDate();">
</td>
<td>
</td>
</tr>
</table>

Re: Calendar control by Jens

Jens
Thu Apr 21 14:27:25 CDT 2005

This is a multi-part message in MIME format.

------=_NextPart_000_001B_01C546B8.E98B1460
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit

You can't address an ID directly. You must do it like this:
document.getelementbyid(Calender1).
Same goes for Calender2.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

> -----Original Message-----
> From: meg [mailto:asdf@asdf.com]
> Posted At: 21. april 2005 17:55
> Posted To: microsoft.public.frontpage.programming
> Conversation: Calendar control
> Subject: Calendar control
>
>
> I have a calendar control on my webpage, when I run it in
> preview it works, when i run it in IE I get the error
> "Calendar1 is undefined". Can someone help me figure out how
> to correctly use this control? Thanks.
>
> This is my code:
>
> <script language="JScript" runat="server">
> var oDate = new Date();
> Session("sMonth") = oDate.getMonth() + 1 + "/";
> Session("sDay") = oDate.getDate() + "/";
> Session("sYear") = oDate.getYear();
> </script>
> <script language=JScript>
> function ShowDate()
> {
> window.alert(Calendar1.Month + "/" + Calendar1.Day + "/" +
> Calendar1.Year + "\r\n" + Calendar2.Month + "/" +
> Calendar2.Day + "/" + Calendar2.Year); } </script> <table
> class=innertable>
> <tr height=20>
> <td>
> Select Starting Date:
> </td>
> <td>
> Select Ending Date:
> </td>
> </tr>
> <tr valign=top height=50>
> <td width=50>
> <OBJECT id=Calendar1 style="LEFT: 0px; TOP:
> 0px"classid=clsid:8E27C92B-1264-101C-8A2F-040224009C02
> VIEWASTEXT>
> <PARAM NAME="_Version" VALUE="524288">
> <PARAM NAME="_ExtentX" VALUE="6000">
> <PARAM NAME="_ExtentY" VALUE="4000">
> <PARAM NAME="_StockProps" VALUE="1">
> <PARAM NAME="BackColor" VALUE="16777215">
> <PARAM NAME="Year" VALUE="<%=Session("sYear")%>">
> <PARAM NAME="Month" VALUE="<%=Session("sMonth")%>">
> <PARAM NAME="Day" VALUE="<%=Session("sDay")%>">
> <PARAM NAME="DayLength" VALUE="1">
> <PARAM NAME="MonthLength" VALUE="1">
> <PARAM NAME="DayFontColor" VALUE="0">
> <PARAM NAME="FirstDay" VALUE="7">
> <PARAM NAME="GridCellEffect" VALUE="0">
> <PARAM NAME="GridFontColor" VALUE="10485760">
> <PARAM NAME="GridLinesColor" VALUE="10485760">
> <PARAM NAME="ShowDateSelectors" VALUE="-1">
> <PARAM NAME="ShowDays" VALUE="-1">
> <PARAM NAME="ShowHorizontalGrid" VALUE="-1">
> <PARAM NAME="ShowTitle" VALUE="-1">
> <PARAM NAME="ShowVerticalGrid" VALUE="0">
> <PARAM NAME="TitleFontColor" VALUE="10485760">
> <PARAM NAME="ValueIsNull" VALUE="0">
> </OBJECT>
> </td>
> <td>
> <OBJECT id=Calendar2 style="LEFT: 0px; TOP:
> 0px"classid=clsid:8E27C92B-1264-101C-8A2F-040224009C02
> VIEWASTEXT>
> <PARAM NAME="_Version" VALUE="524288">
> <PARAM NAME="_ExtentX" VALUE="6000">
> <PARAM NAME="_ExtentY" VALUE="4000">
> <PARAM NAME="_StockProps" VALUE="1">
> <PARAM NAME="BackColor" VALUE="16777215">
> <PARAM NAME="Year" VALUE="<%=Session("sYear")%>">
> <PARAM NAME="Month" VALUE="<%=Session("sMonth")%>">
> <PARAM NAME="Day" VALUE="<%=Session("sDay")%>">
> <PARAM NAME="DayLength" VALUE="1">
> <PARAM NAME="MonthLength" VALUE="1">
> <PARAM NAME="DayFontColor" VALUE="0">
> <PARAM NAME="FirstDay" VALUE="7">
> <PARAM NAME="GridCellEffect" VALUE="0">
> <PARAM NAME="GridFontColor" VALUE="10485760">
> <PARAM NAME="GridLinesColor" VALUE="10485760">
> <PARAM NAME="ShowDateSelectors" VALUE="-1">
> <PARAM NAME="ShowDays" VALUE="-1">
> <PARAM NAME="ShowHorizontalGrid" VALUE="-1">
> <PARAM NAME="ShowTitle" VALUE="-1">
> <PARAM NAME="ShowVerticalGrid" VALUE="0">
> <PARAM NAME="TitleFontColor" VALUE="10485760">
> <PARAM NAME="ValueIsNull" VALUE="0">
> </OBJECT>
> </td>
> </tr>
> <tr valign=top>
> <td>
> <input id=startdate name=startdate type=text value="mm/dd/yyyy">
> </td>
> <td>
> <input id=enddate name=enddate type=text value="mm/dd/yyyy">
> </td>
> </tr>
> <tr>
> <td><INPUT id="btnShow" type=button value=Button
> onclick="ShowDate();">
> </td>
> <td>
> </td>
> </tr>
> </table>
>
>
>
>
>
>

------=_NextPart_000_001B_01C546B8.E98B1460
Content-Type: text/html;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii">
<META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
6.5.7036.0">
<TITLE>Re: Calendar control</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->

<P><FONT SIZE=3D2>You can't address an ID directly. You must do it like =
this:</FONT>

<BR><FONT SIZE=3D2>document.getelementbyid(Calender1).</FONT>

<BR><FONT SIZE=3D2>Same goes for Calender2. </FONT>
</P>

<P><FONT SIZE=3D2>Regards Jens Peter Karlsen. Microsoft MVP - =
Frontpage.</FONT>
</P>

<P><FONT SIZE=3D2>&gt; -----Original Message-----</FONT>

<BR><FONT SIZE=3D2>&gt; From: meg [<A =
HREF=3D"mailto:asdf@asdf.com">mailto:asdf@asdf.com</A>] </FONT>

<BR><FONT SIZE=3D2>&gt; Posted At: 21. april 2005 17:55</FONT>

<BR><FONT SIZE=3D2>&gt; Posted To: =
microsoft.public.frontpage.programming</FONT>

<BR><FONT SIZE=3D2>&gt; Conversation: Calendar control</FONT>

<BR><FONT SIZE=3D2>&gt; Subject: Calendar control</FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; I have a calendar control on my webpage, when I =
run it in </FONT>

<BR><FONT SIZE=3D2>&gt; preview it works, when i run it in IE I get the =
error </FONT>

<BR><FONT SIZE=3D2>&gt; &quot;Calendar1 is undefined&quot;.&nbsp; Can =
someone help me figure out how </FONT>

<BR><FONT SIZE=3D2>&gt; to correctly use this control?&nbsp; =
Thanks.</FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; This is my code:</FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; &lt;script language=3D&quot;JScript&quot; =
runat=3D&quot;server&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; var oDate =3D new Date();</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; Session(&quot;sMonth&quot;) =3D =
oDate.getMonth() + 1 + &quot;/&quot;;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; =
Session(&quot;sDay&quot;)&nbsp;&nbsp; =3D oDate.getDate() + =
&quot;/&quot;;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; Session(&quot;sYear&quot;)&nbsp; =3D =
oDate.getYear();</FONT>

<BR><FONT SIZE=3D2>&gt; &lt;/script&gt;</FONT>

<BR><FONT SIZE=3D2>&gt; &lt;script language=3DJScript&gt;</FONT>

<BR><FONT SIZE=3D2>&gt; function ShowDate()</FONT>

<BR><FONT SIZE=3D2>&gt; {</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; window.alert(Calendar1.Month + =
&quot;/&quot; + Calendar1.Day + &quot;/&quot; + </FONT>

<BR><FONT SIZE=3D2>&gt; Calendar1.Year + &quot;\r\n&quot; + =
Calendar2.Month + &quot;/&quot; + </FONT>

<BR><FONT SIZE=3D2>&gt; Calendar2.Day + &quot;/&quot; + Calendar2.Year); =
} &lt;/script&gt; &lt;table </FONT>

<BR><FONT SIZE=3D2>&gt; class=3Dinnertable&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; &lt;tr height=3D20&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Select =
Starting Date:</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Select =
Ending Date:</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; &lt;/tr&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; &lt;tr valign=3Dtop =
height=3D50&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td =
width=3D50&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;OBJECT =
id=3DCalendar1 style=3D&quot;LEFT: 0px; TOP: </FONT>

<BR><FONT SIZE=3D2>&gt; =
0px&quot;classid=3Dclsid:8E27C92B-1264-101C-8A2F-040224009C02</FONT>

<BR><FONT SIZE=3D2>&gt; VIEWASTEXT&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;_Version&quot; VALUE=3D&quot;524288&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;_ExtentX&quot; VALUE=3D&quot;6000&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;_ExtentY&quot; VALUE=3D&quot;4000&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;_StockProps&quot; VALUE=3D&quot;1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;BackColor&quot; VALUE=3D&quot;16777215&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;Year&quot; =
VALUE=3D&quot;&lt;%=3DSession(&quot;sYear&quot;)%&gt;&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;Month&quot; =
VALUE=3D&quot;&lt;%=3DSession(&quot;sMonth&quot;)%&gt;&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;Day&quot; =
VALUE=3D&quot;&lt;%=3DSession(&quot;sDay&quot;)%&gt;&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;DayLength&quot; VALUE=3D&quot;1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;MonthLength&quot; VALUE=3D&quot;1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;DayFontColor&quot; VALUE=3D&quot;0&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;FirstDay&quot; VALUE=3D&quot;7&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;GridCellEffect&quot; VALUE=3D&quot;0&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;GridFontColor&quot; VALUE=3D&quot;10485760&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;GridLinesColor&quot; =
VALUE=3D&quot;10485760&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowDateSelectors&quot; VALUE=3D&quot;-1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowDays&quot; VALUE=3D&quot;-1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowHorizontalGrid&quot; VALUE=3D&quot;-1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowTitle&quot; VALUE=3D&quot;-1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowVerticalGrid&quot; VALUE=3D&quot;0&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;TitleFontColor&quot; =
VALUE=3D&quot;10485760&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ValueIsNull&quot; VALUE=3D&quot;0&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
&lt;/OBJECT&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;OBJECT =
id=3DCalendar2 style=3D&quot;LEFT: 0px; TOP: </FONT>

<BR><FONT SIZE=3D2>&gt; =
0px&quot;classid=3Dclsid:8E27C92B-1264-101C-8A2F-040224009C02</FONT>

<BR><FONT SIZE=3D2>&gt; VIEWASTEXT&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;_Version&quot; VALUE=3D&quot;524288&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;_ExtentX&quot; VALUE=3D&quot;6000&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;_ExtentY&quot; VALUE=3D&quot;4000&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;_StockProps&quot; VALUE=3D&quot;1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;BackColor&quot; VALUE=3D&quot;16777215&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;Year&quot; =
VALUE=3D&quot;&lt;%=3DSession(&quot;sYear&quot;)%&gt;&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;Month&quot; =
VALUE=3D&quot;&lt;%=3DSession(&quot;sMonth&quot;)%&gt;&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;Day&quot; =
VALUE=3D&quot;&lt;%=3DSession(&quot;sDay&quot;)%&gt;&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;DayLength&quot; VALUE=3D&quot;1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;MonthLength&quot; VALUE=3D&quot;1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;DayFontColor&quot; VALUE=3D&quot;0&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;FirstDay&quot; VALUE=3D&quot;7&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;GridCellEffect&quot; VALUE=3D&quot;0&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;GridFontColor&quot; VALUE=3D&quot;10485760&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;GridLinesColor&quot; =
VALUE=3D&quot;10485760&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowDateSelectors&quot; VALUE=3D&quot;-1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowDays&quot; VALUE=3D&quot;-1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowHorizontalGrid&quot; VALUE=3D&quot;-1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowTitle&quot; VALUE=3D&quot;-1&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ShowVerticalGrid&quot; VALUE=3D&quot;0&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;TitleFontColor&quot; =
VALUE=3D&quot;10485760&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;PARAM =
NAME=3D&quot;ValueIsNull&quot; VALUE=3D&quot;0&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
&lt;/OBJECT&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; &lt;/tr&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; &lt;tr valign=3Dtop&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input =
id=3Dstartdate name=3Dstartdate type=3Dtext =
value=3D&quot;mm/dd/yyyy&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;input =
id=3Denddate name=3Denddate type=3Dtext =
value=3D&quot;mm/dd/yyyy&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; &lt;/tr&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; &lt;tr&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;&lt;INPUT =
id=3D&quot;btnShow&quot; type=3Dbutton value=3DButton </FONT>

<BR><FONT SIZE=3D2>&gt; onclick=3D&quot;ShowDate();&quot;&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;</FONT>

<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; &lt;/tr&gt;</FONT>

<BR><FONT SIZE=3D2>&gt; &lt;/table&gt;</FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>

<BR><FONT SIZE=3D2>&gt; </FONT>
</P>

</BODY>
</HTML>
------=_NextPart_000_001B_01C546B8.E98B1460--