<%@ Page Language="C#"
         MasterPageFile="~/ViziGen.master"
         AutoEventWireup="true"
         CodeFile="ProductMM.aspx.cs"
         Inherits="ProductMM"
         Title="Product Maintenance" %>
<%@ Register Src="../UserControls/Generated/eApplicationDDL.ascx"
             TagName="eApplicationDDL"
             TagPrefix="uceApplication" %>
<%@ Register Src="../UserControls/Generated/eVersionDDL.ascx"
             TagName="eVersionDDL"
             TagPrefix="uceVersion" %>
<%@ Register Src="../UserControls/Generated/eBetaDDL.ascx"
             TagName="eBetaDDL"
             TagPrefix="uceBeta" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

    <div class="ContentTitle">
        Product Maintenance
    </div>

    <asp:MultiView ID="mvForm" runat="server" ActiveViewIndex="0">

        <asp:View ID="vNew" runat="server">

            <div class="ContentHelp">
                <br />
                Enter details of the new Product and then click on the Add button.<br />
                <br />
            </div>

            <table border="0" cellpadding="0" cellspacing="0">

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_ProductName"
                            ToolTip="The display name of the Product"
                            Text="Name:  "
                            runat="server"/></td>
                    <td align="left">
                        <asp:TextBox
                            ID="txt_New_ProductName"
                            Columns="50"
                            ReadOnly="false"
                            runat="server">
                        </asp:TextBox>
                    </td>
                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_ProductName"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The display name of the Product"
                            OnClick="lnk_Help_New_ProductName_Click"
                        />
                    </td>
                    <td align="left">
                        <asp:CustomValidator ID="cv_New_ProductName" runat="server" />
                    </td>
                </tr>
                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_DownloadFileName"
                            ToolTip="The location of the download file"
                            Text="Download File Name:  "
                            runat="server"/></td>
                    <td align="left">
                        <asp:TextBox
                            ID="txt_New_DownloadFileName"
                            Columns="50"
                            ReadOnly="false"
                            runat="server">
                        </asp:TextBox>
                    </td>
                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_DownloadFileName"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The location of the download file"
                            OnClick="lnk_Help_New_DownloadFileName_Click"
                        />
                    </td>
                    <td align="left">
                        <asp:CustomValidator ID="cv_New_DownloadFileName" runat="server" />
                    </td>
                </tr>
                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_Application"
                            ToolTip="The Application family e.g. ViziGen"
                            Text="Application:  "
                            runat="server"/></td>
                    <td align="left">
                        <uceApplication:eApplicationDDL ID="ddl_New_Application" runat="server" />
                    </td>
                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_Application"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The Application family e.g. ViziGen"
                            OnClick="lnk_Help_New_Application_Click"
                        />
                    </td>
                    <td>
                        <asp:CustomValidator ID="cv_New_Application" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_Version"
                            ToolTip="The Version of the Product"
                            Text="Version:  "
                            runat="server"/></td>
                    <td align="left">
                        <uceVersion:eVersionDDL ID="ddl_New_Version" runat="server" />
                    </td>
                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_Version"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The Version of the Product"
                            OnClick="lnk_Help_New_Version_Click"
                        />
                    </td>
                    <td>
                        <asp:CustomValidator ID="cv_New_Version" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_Beta"
                            ToolTip="Either Release or Beta"
                            Text="Release/Beta:  "
                            runat="server"/></td>
                    <td align="left">
                        <uceBeta:eBetaDDL ID="ddl_New_Beta" runat="server" />
                    </td>
                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_Beta"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="Either Release or Beta"
                            OnClick="lnk_Help_New_Beta_Click"
                        />
                    </td>
                    <td>
                        <asp:CustomValidator ID="cv_New_Beta" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_DateStartSubscription"
                            ToolTip="The date from which subscriptions can be taken out"
                            Text="Subscription Start:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_New_DateStartSubscription"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                         
                        <asp:ImageButton
                            ID="btn_New_DatePick_DateStartSubscription"
                            runat="server"
                            ImageUrl="~/App_Themes/ViziGen/Images/Calendar.gif"
                            OnClick="btn_New_DatePick_DateStartSubscription_Click" />
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_DateStartSubscription"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date from which subscriptions can be taken out"
                            OnClick="lnk_Help_New_DateStartSubscription_Click"
                        />
                    </td>

                    <td>
                        <asp:CustomValidator ID="cv_New_DateStartSubscription" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_DateEndSubscription"
                            ToolTip="The date up to which subscriptions can be taken out"
                            Text="Suscription End:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_New_DateEndSubscription"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                         
                        <asp:ImageButton
                            ID="btn_New_DatePick_DateEndSubscription"
                            runat="server"
                            ImageUrl="~/App_Themes/ViziGen/Images/Calendar.gif"
                            OnClick="btn_New_DatePick_DateEndSubscription_Click" />
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_DateEndSubscription"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date up to which subscriptions can be taken out"
                            OnClick="lnk_Help_New_DateEndSubscription_Click"
                        />
                    </td>

                    <td>
                        <asp:CustomValidator ID="cv_New_DateEndSubscription" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_DateStartDownload"
                            ToolTip="The date from which the Product can be downloaded"
                            Text="Download Start:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_New_DateStartDownload"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                         
                        <asp:ImageButton
                            ID="btn_New_DatePick_DateStartDownload"
                            runat="server"
                            ImageUrl="~/App_Themes/ViziGen/Images/Calendar.gif"
                            OnClick="btn_New_DatePick_DateStartDownload_Click" />
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_DateStartDownload"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date from which the Product can be downloaded"
                            OnClick="lnk_Help_New_DateStartDownload_Click"
                        />
                    </td>

                    <td>
                        <asp:CustomValidator ID="cv_New_DateStartDownload" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_New_DateEndDownload"
                            ToolTip="The date up to which the Product can be downloaded"
                            Text="Download End:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_New_DateEndDownload"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                         
                        <asp:ImageButton
                            ID="btn_New_DatePick_DateEndDownload"
                            runat="server"
                            ImageUrl="~/App_Themes/ViziGen/Images/Calendar.gif"
                            OnClick="btn_New_DatePick_DateEndDownload_Click" />
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_New_DateEndDownload"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date up to which the Product can be downloaded"
                            OnClick="lnk_Help_New_DateEndDownload_Click"
                        />
                    </td>

                    <td>
                        <asp:CustomValidator ID="cv_New_DateEndDownload" runat="server" />
                    </td>
                </tr>

            </table>

            <asp:CustomValidator ID="cv_New_Form" runat="server" />

            <br />

            <asp:Button
                ID="btn_OK_New"
                runat="server" Text="Add"
                CausesValidation="true"
                EnableTheming="True"
                OnClick="btn_OK_New_Click" />

            <asp:Button
                ID="btn_Cancel_New"
                runat="server" Text="Cancel"
                CausesValidation="False"
                EnableTheming="True" />

            <asp:ValidationSummary
                ID="valSumNew"
                runat="server"
                ShowMessageBox="False"
                HeaderText="Errors were detected <br />Hover over the <img src='/ViziGenWeb/App_Themes/ViziGen/Images/Error.gif'> symbol to view error details" />

            <br />
            <br />
        </asp:View>

        <asp:View ID="vNewDone" runat="server">
            <div class="HelpTitle">
                <br />
                New Product Saved</div><br />
            <div class="HelpText">
                The new Product has been saved in the database...<br />
                <br />
                <asp:Button
                    ID="btn_OK_NewDone"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK" />
            </div>
        </asp:View>

        <asp:View ID="vReview" runat="server">

            <div class="ContentHelp">
                <br />
                Review the Product details and then click on the OK button.<br />
                <br />
            </div>

            <table border="0" cellpadding="0" cellspacing="0">

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_ProductName"
                            ToolTip="The display name of the Product"
                            Text="Name:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_ProductName"
                            Columns="50"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_ProductName"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The display name of the Product"
                            OnClick="lnk_Help_Review_ProductName_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_DownloadFileName"
                            ToolTip="The location of the download file"
                            Text="Download File Name:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_DownloadFileName"
                            Columns="50"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_DownloadFileName"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The location of the download file"
                            OnClick="lnk_Help_Review_DownloadFileName_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_Application"
                            ToolTip="The Application family e.g. ViziGen"
                            Text="Application:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_Application"
                            Columns="10"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_Application"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The Application family e.g. ViziGen"
                            OnClick="lnk_Help_Review_Application_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_Version"
                            ToolTip="The Version of the Product"
                            Text="Version:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_Version"
                            Columns="10"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_Version"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The Version of the Product"
                            OnClick="lnk_Help_Review_Version_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_Beta"
                            ToolTip="Either Release or Beta"
                            Text="Release/Beta:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_Beta"
                            Columns="10"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_Beta"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="Either Release or Beta"
                            OnClick="lnk_Help_Review_Beta_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_DateStartSubscription"
                            ToolTip="The date from which subscriptions can be taken out"
                            Text="Subscription Start:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_DateStartSubscription"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_DateStartSubscription"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date from which subscriptions can be taken out"
                            OnClick="lnk_Help_Review_DateStartSubscription_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_DateEndSubscription"
                            ToolTip="The date up to which subscriptions can be taken out"
                            Text="Suscription End:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_DateEndSubscription"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_DateEndSubscription"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date up to which subscriptions can be taken out"
                            OnClick="lnk_Help_Review_DateEndSubscription_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_DateStartDownload"
                            ToolTip="The date from which the Product can be downloaded"
                            Text="Download Start:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_DateStartDownload"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_DateStartDownload"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date from which the Product can be downloaded"
                            OnClick="lnk_Help_Review_DateStartDownload_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Review_DateEndDownload"
                            ToolTip="The date up to which the Product can be downloaded"
                            Text="Download End:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Review_DateEndDownload"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Review_DateEndDownload"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date up to which the Product can be downloaded"
                            OnClick="lnk_Help_Review_DateEndDownload_Click"
                        />
                    </td>

                    <td>
                          
                    </td>
                </tr>

            </table>
            <asp:CustomValidator ID="cv_Review_Form" runat="server" />
            <br />

            <asp:Button
                ID="btn_OK_Review"
                runat="server" Text="OK"
                CausesValidation="false"
                EnableTheming="True" />

            <asp:ValidationSummary
                ID="valSumReview"
                runat="server"
                ShowMessageBox="False"
                HeaderText="Errors were detected <br />Hover over the <img src='/ViziGenWeb/App_Themes/ViziGen/Images/Error.gif'> symbol to view error details" />

            <br />
            <br />
        </asp:View>

        <asp:View ID="vEdit" runat="server">

            <div class="ContentHelp">
                <br />
                Edit the Product details and then click on the Update button.<br />
                <br />
            </div>

            <table border="0" cellpadding="0" cellspacing="0">
                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_ProductName"
                            ToolTip="The display name of the Product"
                            Text="Name:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Edit_ProductName"
                            Columns="50"
                            ReadOnly="false"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_ProductName"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The display name of the Product"
                            OnClick="lnk_Help_Edit_ProductName_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Edit_ProductName" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_DownloadFileName"
                            ToolTip="The location of the download file"
                            Text="Download File Name:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Edit_DownloadFileName"
                            Columns="50"
                            ReadOnly="false"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_DownloadFileName"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The location of the download file"
                            OnClick="lnk_Help_Edit_DownloadFileName_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Edit_DownloadFileName" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_Application"
                            ToolTip="The Application family e.g. ViziGen"
                            Text="Application:  "
                            runat="server"/></td>
                    <td align="left">
                        <uceApplication:eApplicationDDL ID="ddl_Edit_Application" runat="server" />
                    </td>
                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_Application"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The Application family e.g. ViziGen"
                            OnClick="lnk_Help_Edit_Application_Click"
                        />
                    </td>
                    <td>
                        <asp:CustomValidator ID="cv_Edit_Application" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_Version"
                            ToolTip="The Version of the Product"
                            Text="Version:  "
                            runat="server"/></td>
                    <td align="left">
                        <uceVersion:eVersionDDL ID="ddl_Edit_Version" runat="server" />
                    </td>
                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_Version"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The Version of the Product"
                            OnClick="lnk_Help_Edit_Version_Click"
                        />
                    </td>
                    <td>
                        <asp:CustomValidator ID="cv_Edit_Version" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_Beta"
                            ToolTip="Either Release or Beta"
                            Text="Release/Beta:  "
                            runat="server"/></td>
                    <td align="left">
                        <uceBeta:eBetaDDL ID="ddl_Edit_Beta" runat="server" />
                    </td>
                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_Beta"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="Either Release or Beta"
                            OnClick="lnk_Help_Edit_Beta_Click"
                        />
                    </td>
                    <td>
                        <asp:CustomValidator ID="cv_Edit_Beta" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_DateStartSubscription"
                            ToolTip="The date from which subscriptions can be taken out"
                            Text="Subscription Start:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Edit_DateStartSubscription"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                         
                        <asp:ImageButton
                            ID="btn_Edit_DatePick_DateStartSubscription"
                            runat="server"
                            ImageUrl="~/App_Themes/ViziGen/Images/Calendar.gif"
                            OnClick="btn_Edit_DatePick_DateStartSubscription_Click" />
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_DateStartSubscription"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date from which subscriptions can be taken out"
                            OnClick="lnk_Help_Edit_DateStartSubscription_Click"
                        />
                    </td>

                    <td>
                        <asp:CustomValidator ID="cv_Edit_DateStartSubscription" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_DateEndSubscription"
                            ToolTip="The date up to which subscriptions can be taken out"
                            Text="Suscription End:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Edit_DateEndSubscription"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                         
                        <asp:ImageButton
                            ID="btn_Edit_DatePick_DateEndSubscription"
                            runat="server"
                            ImageUrl="~/App_Themes/ViziGen/Images/Calendar.gif"
                            OnClick="btn_Edit_DatePick_DateEndSubscription_Click" />
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_DateEndSubscription"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date up to which subscriptions can be taken out"
                            OnClick="lnk_Help_Edit_DateEndSubscription_Click"
                        />
                    </td>

                    <td>
                        <asp:CustomValidator ID="cv_Edit_DateEndSubscription" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_DateStartDownload"
                            ToolTip="The date from which the Product can be downloaded"
                            Text="Download Start:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Edit_DateStartDownload"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                         
                        <asp:ImageButton
                            ID="btn_Edit_DatePick_DateStartDownload"
                            runat="server"
                            ImageUrl="~/App_Themes/ViziGen/Images/Calendar.gif"
                            OnClick="btn_Edit_DatePick_DateStartDownload_Click" />
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_DateStartDownload"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date from which the Product can be downloaded"
                            OnClick="lnk_Help_Edit_DateStartDownload_Click"
                        />
                    </td>

                    <td>
                        <asp:CustomValidator ID="cv_Edit_DateStartDownload" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Edit_DateEndDownload"
                            ToolTip="The date up to which the Product can be downloaded"
                            Text="Download End:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Edit_DateEndDownload"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                         
                        <asp:ImageButton
                            ID="btn_Edit_DatePick_DateEndDownload"
                            runat="server"
                            ImageUrl="~/App_Themes/ViziGen/Images/Calendar.gif"
                            OnClick="btn_Edit_DatePick_DateEndDownload_Click" />
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Edit_DateEndDownload"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date up to which the Product can be downloaded"
                            OnClick="lnk_Help_Edit_DateEndDownload_Click"
                        />
                    </td>

                    <td>
                        <asp:CustomValidator ID="cv_Edit_DateEndDownload" runat="server" />
                    </td>
                </tr>

            </table>

            <asp:CustomValidator ID="cv_Edit_Form" runat="server" />

            <br />

            <asp:Button
                ID="btn_OK_Edit"
                runat="server"
                Text="Update Product"
                CausesValidation="true"
                EnableTheming="True"
                OnClick="btn_OK_Edit_Click" />

            <asp:Button
                ID="btn_Cancel_Edit"
                runat="server" Text="Cancel"
                CausesValidation="False"
                EnableTheming="True" />

            <asp:ValidationSummary
                ID="valSumEdit"
                runat="server"
                ShowMessageBox="False"
                HeaderText="Errors were detected <br />Hover over the <img src='/ViziGenWeb/App_Themes/ViziGen/Images/Error.gif'> symbol to view error details" />


            <br />
            <br />
        </asp:View>

        <asp:View ID="vEditDone" runat="server">
            <div class="HelpTitle">
                <br />
                Product Changes Saved</div><br />
            <div class="HelpText">
                The changes you have made have been saved in the database...<br />
                <br />
                <asp:Button
                    ID="btn_OK_EditDone"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                />
            </div>
        </asp:View>

        <asp:View ID="vDelete" runat="server">

            <div class="ContentHelp">
                <br />
                Check the Product details (to be certain that you have selected the correct row) and then click on the Delete button.<br />
                <br />
            </div>

            <table border="0" cellpadding="0" cellspacing="0">
                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_ProductName"
                            ToolTip="The display name of the Product"
                            Text="Name:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_ProductName"
                            Columns="50"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_ProductName"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The display name of the Product"
                            OnClick="lnk_Help_Delete_ProductName_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_ProductName" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_DownloadFileName"
                            ToolTip="The location of the download file"
                            Text="Download File Name:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_DownloadFileName"
                            Columns="50"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_DownloadFileName"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The location of the download file"
                            OnClick="lnk_Help_Delete_DownloadFileName_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_DownloadFileName" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_Application"
                            ToolTip="The Application family e.g. ViziGen"
                            Text="Application:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_Application"
                            Columns="10"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_Application"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The Application family e.g. ViziGen"
                            OnClick="lnk_Help_Delete_Application_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_Application" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_Version"
                            ToolTip="The Version of the Product"
                            Text="Version:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_Version"
                            Columns="10"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_Version"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The Version of the Product"
                            OnClick="lnk_Help_Delete_Version_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_Version" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_Beta"
                            ToolTip="Either Release or Beta"
                            Text="Release/Beta:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_Beta"
                            Columns="10"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_Beta"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="Either Release or Beta"
                            OnClick="lnk_Help_Delete_Beta_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_Beta" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_DateStartSubscription"
                            ToolTip="The date from which subscriptions can be taken out"
                            Text="Subscription Start:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_DateStartSubscription"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_DateStartSubscription"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date from which subscriptions can be taken out"
                            OnClick="lnk_Help_Delete_DateStartSubscription_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_DateStartSubscription" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_DateEndSubscription"
                            ToolTip="The date up to which subscriptions can be taken out"
                            Text="Suscription End:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_DateEndSubscription"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_DateEndSubscription"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date up to which subscriptions can be taken out"
                            OnClick="lnk_Help_Delete_DateEndSubscription_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_DateEndSubscription" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_DateStartDownload"
                            ToolTip="The date from which the Product can be downloaded"
                            Text="Download Start:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_DateStartDownload"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_DateStartDownload"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date from which the Product can be downloaded"
                            OnClick="lnk_Help_Delete_DateStartDownload_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_DateStartDownload" runat="server" />
                    </td>
                </tr>

                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Delete_DateEndDownload"
                            ToolTip="The date up to which the Product can be downloaded"
                            Text="Download End:  "
                            runat="server"/></td>

                    <td align="left">
                        <asp:TextBox
                            ID="txt_Delete_DateEndDownload"
                            Columns="12"
                            ReadOnly="true"
                            runat="server">
                        </asp:TextBox>
                    </td>

                    <td width=17 align=center >
                        <asp:LinkButton
                            ID="lnk_Help_Delete_DateEndDownload"
                            runat="server"
                            CausesValidation="False"
                            Text="?"
                            ToolTip="The date up to which the Product can be downloaded"
                            OnClick="lnk_Help_Delete_DateEndDownload_Click"
                        />
                    </td>

                    <td align="left">
                        <asp:CustomValidator ID="cv_Delete_DateEndDownload" runat="server" />
                    </td>
                </tr>

            </table>

            <asp:CustomValidator ID="cv_Delete_Form" runat="server" />

            <br />

            <asp:Button
                ID="btn_OK_Delete"
                runat="server"
                Text="Delete Product"
                CausesValidation="true"
                EnableTheming="True"
                OnClick="btn_OK_Delete_Click" />

            <asp:Button
                ID="btn_Cancel_Delete"
                runat="server" Text="Cancel"
                CausesValidation="False"
                EnableTheming="True" />

            <asp:ValidationSummary
                ID="valSumDelete"
                runat="server"
                ShowMessageBox="False"
                HeaderText="Errors were detected <br />Hover over the <img src='/ViziGenWeb/App_Themes/ViziGen/Images/Error.gif'> symbol to view error details" />

            <br />
            <br />
        </asp:View>

        <asp:View ID="vDeleteDone" runat="server">
            <div class="HelpTitle">
                <br />
                Product Deleted</div><br />
            <div class="HelpText">
                The Product has been deleted from the database...<br />
                <br />
                <asp:Button
                    ID="btn_OK_DeleteDone"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK" />
            </div>
        </asp:View>



        <asp:View ID="vHelpProductName" runat="server">
            <br />
            <div class="HelpTitle">Help: Name</div><br />
            <div class="HelpText">
                The display name of the Product
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_ProductName"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>


        <asp:View ID="vHelpDownloadFileName" runat="server">
            <br />
            <div class="HelpTitle">Help: Download File Name</div><br />
            <div class="HelpText">
                The location of the download file
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_DownloadFileName"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>


        <asp:View ID="vHelpApplication" runat="server">
            <br />
            <div class="HelpTitle">Help: Application</div><br />
            <div class="HelpText">
                The Application family e.g. ViziGen
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_Application"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>


        <asp:View ID="vHelpVersion" runat="server">
            <br />
            <div class="HelpTitle">Help: Version</div><br />
            <div class="HelpText">
                The Version of the Product
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_Version"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>


        <asp:View ID="vHelpBeta" runat="server">
            <br />
            <div class="HelpTitle">Help: Release/Beta</div><br />
            <div class="HelpText">
                Either Release or Beta
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_Beta"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>


        <asp:View ID="vHelpDateStartSubscription" runat="server">
            <br />
            <div class="HelpTitle">Help: Subscription Start</div><br />
            <div class="HelpText">
                The date from which subscriptions can be taken out
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_DateStartSubscription"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>


        <asp:View ID="vHelpDateEndSubscription" runat="server">
            <br />
            <div class="HelpTitle">Help: Suscription End</div><br />
            <div class="HelpText">
                The date up to which subscriptions can be taken out
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_DateEndSubscription"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>


        <asp:View ID="vHelpDateStartDownload" runat="server">
            <br />
            <div class="HelpTitle">Help: Download Start</div><br />
            <div class="HelpText">
                The date from which the Product can be downloaded
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_DateStartDownload"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>


        <asp:View ID="vHelpDateEndDownload" runat="server">
            <br />
            <div class="HelpTitle">Help: Download End</div><br />
            <div class="HelpText">
                The date up to which the Product can be downloaded
                <br /><br />
                <asp:Button
                    ID="btn_OK_Help_DateEndDownload"
                    CssClass="HelpButton"
                    runat="server"
                    Text="OK"
                    OnClick="btn_OK_Help_Click" />
             </div>
        </asp:View>

        <asp:View ID="vPickDateStartSubscription" runat="server">
            <br />
            <div class="HelpTitle">Subscription Start</div>
            <br />
            <div class="HelpText">The date from which subscriptions can be taken out</div>
            <br />
            <asp:Button
                ID="btn_Min_DatePick_DateStartSubscription"
                runat="server"
                Text="Set to Earliest"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Min_DatePick_DateStartSubscription_Click" />
            <asp:Button
                ID="btn_Max_DatePick_DateStartSubscription"
                runat="server"
                Text="Set to Latest"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Max_DatePick_DateStartSubscription_Click" />
            <asp:Button
                ID="btn_Clear_DatePick_DateStartSubscription"
                runat="server"
                Text="Clear the Date"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Clear_DatePick_DateStartSubscription_Click" />
            <br />
            <br />
            <table runat="server" border=3 cellspacing=1 rules=none cellpadding=10 >
                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Year_PickDateDateStartSubscription"
                            ToolTip="The year you want to set the Calendar control to"
                            Text="Year:"
                            runat="server"/>
                    </td>
                    <td>
                        <asp:TextBox
                            ID="txt_Year_PickDateDateStartSubscription"
                            Columns="4"
                            runat="server">
                        </asp:TextBox>
                    </td>
                    <td>
                        <asp:Button
                            ID="btn_SetYear_PickDate_DateStartSubscription"
                            runat="server"
                            Text="Set Year"
                            CausesValidation="false"
                            EnableTheming="True"
                            OnClick="btn_SetYear_PickDate_DateStartSubscription_Click" />
                    </td>
                    <td rowspan=2>
                    <asp:Calendar ID="cal_DateStartSubscription" runat="server"></asp:Calendar></td>
                </tr>
                <tr>
                    <td class="ContentLabel" align="right" >
                        <asp:Label
                            ID="lbl_Month_PickDateDateStartSubscription"
                            ToolTip="The Month you want to set the Calendar control to"
                            Text="Month:"
                            runat="server"/>
                    </td>
                    <td>
                        <asp:DropDownList
                            ID="ddl_Month_PickDate_DateStartSubscription"
                            runat="server">
                            <asp:ListItem Text="January" Value="1" />
                            <asp:ListItem Text="February" Value="2" />
                            <asp:ListItem Text="March" Value="3" />
                            <asp:ListItem Text="April" Value="4" />
                            <asp:ListItem Text="May" Value="5" />
                            <asp:ListItem Text="June" Value="6" />
                            <asp:ListItem Text="July" Value="7" />
                            <asp:ListItem Text="August" Value="8" />
                            <asp:ListItem Text="September" Value="9" />
                            <asp:ListItem Text="October" Value="10" />
                            <asp:ListItem Text="November" Value="1" />
                            <asp:ListItem Text="December" Value="12" />
                        </asp:DropDownList>
                    </td>
                    <td>
                        <asp:Button
                            ID="btn_SetMonth_PickDateDateStartSubscription"
                            runat="server"
                            Text="Set Month"
                            CausesValidation="true"
                            EnableTheming="True"
                            OnClick="btn_SetMonth_PickDate_DateStartSubscription_Click" />
                    </td>
                </tr>
            </table>
            <br />
            <br />
            <asp:Button
                ID="btn_OK_DatePick_DateStartSubscription"
                runat="server"
                Text="OK"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_OK_DatePick_DateStartSubscription_Click" />
            <asp:Button
                ID="btn_Cancel_DatePick_DateStartSubscription"
                runat="server"
                Text="Cancel"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Cancel_DatePick_Click" />
        </asp:View>


        <asp:View ID="vPickDateEndSubscription" runat="server">
            <br />
            <div class="HelpTitle">Suscription End</div>
            <br />
            <div class="HelpText">The date up to which subscriptions can be taken out</div>
            <br />
            <asp:Button
                ID="btn_Min_DatePick_DateEndSubscription"
                runat="server"
                Text="Set to Earliest"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Min_DatePick_DateEndSubscription_Click" />
            <asp:Button
                ID="btn_Max_DatePick_DateEndSubscription"
                runat="server"
                Text="Set to Latest"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Max_DatePick_DateEndSubscription_Click" />
            <asp:Button
                ID="btn_Clear_DatePick_DateEndSubscription"
                runat="server"
                Text="Clear the Date"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Clear_DatePick_DateEndSubscription_Click" />
            <br />
            <br />
            <table runat="server" border=3 cellspacing=1 rules=none cellpadding=10 >
                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Year_PickDateDateEndSubscription"
                            ToolTip="The year you want to set the Calendar control to"
                            Text="Year:"
                            runat="server"/>
                    </td>
                    <td>
                        <asp:TextBox
                            ID="txt_Year_PickDateDateEndSubscription"
                            Columns="4"
                            runat="server">
                        </asp:TextBox>
                    </td>
                    <td>
                        <asp:Button
                            ID="btn_SetYear_PickDate_DateEndSubscription"
                            runat="server"
                            Text="Set Year"
                            CausesValidation="false"
                            EnableTheming="True"
                            OnClick="btn_SetYear_PickDate_DateEndSubscription_Click" />
                    </td>
                    <td rowspan=2>
                    <asp:Calendar ID="cal_DateEndSubscription" runat="server"></asp:Calendar></td>
                </tr>
                <tr>
                    <td class="ContentLabel" align="right" >
                        <asp:Label
                            ID="lbl_Month_PickDateDateEndSubscription"
                            ToolTip="The Month you want to set the Calendar control to"
                            Text="Month:"
                            runat="server"/>
                    </td>
                    <td>
                        <asp:DropDownList
                            ID="ddl_Month_PickDate_DateEndSubscription"
                            runat="server">
                            <asp:ListItem Text="January" Value="1" />
                            <asp:ListItem Text="February" Value="2" />
                            <asp:ListItem Text="March" Value="3" />
                            <asp:ListItem Text="April" Value="4" />
                            <asp:ListItem Text="May" Value="5" />
                            <asp:ListItem Text="June" Value="6" />
                            <asp:ListItem Text="July" Value="7" />
                            <asp:ListItem Text="August" Value="8" />
                            <asp:ListItem Text="September" Value="9" />
                            <asp:ListItem Text="October" Value="10" />
                            <asp:ListItem Text="November" Value="1" />
                            <asp:ListItem Text="December" Value="12" />
                        </asp:DropDownList>
                    </td>
                    <td>
                        <asp:Button
                            ID="btn_SetMonth_PickDateDateEndSubscription"
                            runat="server"
                            Text="Set Month"
                            CausesValidation="true"
                            EnableTheming="True"
                            OnClick="btn_SetMonth_PickDate_DateEndSubscription_Click" />
                    </td>
                </tr>
            </table>
            <br />
            <br />
            <asp:Button
                ID="btn_OK_DatePick_DateEndSubscription"
                runat="server"
                Text="OK"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_OK_DatePick_DateEndSubscription_Click" />
            <asp:Button
                ID="btn_Cancel_DatePick_DateEndSubscription"
                runat="server"
                Text="Cancel"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Cancel_DatePick_Click" />
        </asp:View>


        <asp:View ID="vPickDateStartDownload" runat="server">
            <br />
            <div class="HelpTitle">Download Start</div>
            <br />
            <div class="HelpText">The date from which the Product can be downloaded</div>
            <br />
            <asp:Button
                ID="btn_Min_DatePick_DateStartDownload"
                runat="server"
                Text="Set to Earliest"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Min_DatePick_DateStartDownload_Click" />
            <asp:Button
                ID="btn_Max_DatePick_DateStartDownload"
                runat="server"
                Text="Set to Latest"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Max_DatePick_DateStartDownload_Click" />
            <asp:Button
                ID="btn_Clear_DatePick_DateStartDownload"
                runat="server"
                Text="Clear the Date"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Clear_DatePick_DateStartDownload_Click" />
            <br />
            <br />
            <table runat="server" border=3 cellspacing=1 rules=none cellpadding=10 >
                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Year_PickDateDateStartDownload"
                            ToolTip="The year you want to set the Calendar control to"
                            Text="Year:"
                            runat="server"/>
                    </td>
                    <td>
                        <asp:TextBox
                            ID="txt_Year_PickDateDateStartDownload"
                            Columns="4"
                            runat="server">
                        </asp:TextBox>
                    </td>
                    <td>
                        <asp:Button
                            ID="btn_SetYear_PickDate_DateStartDownload"
                            runat="server"
                            Text="Set Year"
                            CausesValidation="false"
                            EnableTheming="True"
                            OnClick="btn_SetYear_PickDate_DateStartDownload_Click" />
                    </td>
                    <td rowspan=2>
                    <asp:Calendar ID="cal_DateStartDownload" runat="server"></asp:Calendar></td>
                </tr>
                <tr>
                    <td class="ContentLabel" align="right" >
                        <asp:Label
                            ID="lbl_Month_PickDateDateStartDownload"
                            ToolTip="The Month you want to set the Calendar control to"
                            Text="Month:"
                            runat="server"/>
                    </td>
                    <td>
                        <asp:DropDownList
                            ID="ddl_Month_PickDate_DateStartDownload"
                            runat="server">
                            <asp:ListItem Text="January" Value="1" />
                            <asp:ListItem Text="February" Value="2" />
                            <asp:ListItem Text="March" Value="3" />
                            <asp:ListItem Text="April" Value="4" />
                            <asp:ListItem Text="May" Value="5" />
                            <asp:ListItem Text="June" Value="6" />
                            <asp:ListItem Text="July" Value="7" />
                            <asp:ListItem Text="August" Value="8" />
                            <asp:ListItem Text="September" Value="9" />
                            <asp:ListItem Text="October" Value="10" />
                            <asp:ListItem Text="November" Value="1" />
                            <asp:ListItem Text="December" Value="12" />
                        </asp:DropDownList>
                    </td>
                    <td>
                        <asp:Button
                            ID="btn_SetMonth_PickDateDateStartDownload"
                            runat="server"
                            Text="Set Month"
                            CausesValidation="true"
                            EnableTheming="True"
                            OnClick="btn_SetMonth_PickDate_DateStartDownload_Click" />
                    </td>
                </tr>
            </table>
            <br />
            <br />
            <asp:Button
                ID="btn_OK_DatePick_DateStartDownload"
                runat="server"
                Text="OK"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_OK_DatePick_DateStartDownload_Click" />
            <asp:Button
                ID="btn_Cancel_DatePick_DateStartDownload"
                runat="server"
                Text="Cancel"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Cancel_DatePick_Click" />
        </asp:View>


        <asp:View ID="vPickDateEndDownload" runat="server">
            <br />
            <div class="HelpTitle">Download End</div>
            <br />
            <div class="HelpText">The date up to which the Product can be downloaded</div>
            <br />
            <asp:Button
                ID="btn_Min_DatePick_DateEndDownload"
                runat="server"
                Text="Set to Earliest"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Min_DatePick_DateEndDownload_Click" />
            <asp:Button
                ID="btn_Max_DatePick_DateEndDownload"
                runat="server"
                Text="Set to Latest"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Max_DatePick_DateEndDownload_Click" />
            <asp:Button
                ID="btn_Clear_DatePick_DateEndDownload"
                runat="server"
                Text="Clear the Date"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Clear_DatePick_DateEndDownload_Click" />
            <br />
            <br />
            <table runat="server" border=3 cellspacing=1 rules=none cellpadding=10 >
                <tr>
                    <td class="ContentLabel" align="right">
                        <asp:Label
                            ID="lbl_Year_PickDateDateEndDownload"
                            ToolTip="The year you want to set the Calendar control to"
                            Text="Year:"
                            runat="server"/>
                    </td>
                    <td>
                        <asp:TextBox
                            ID="txt_Year_PickDateDateEndDownload"
                            Columns="4"
                            runat="server">
                        </asp:TextBox>
                    </td>
                    <td>
                        <asp:Button
                            ID="btn_SetYear_PickDate_DateEndDownload"
                            runat="server"
                            Text="Set Year"
                            CausesValidation="false"
                            EnableTheming="True"
                            OnClick="btn_SetYear_PickDate_DateEndDownload_Click" />
                    </td>
                    <td rowspan=2>
                    <asp:Calendar ID="cal_DateEndDownload" runat="server"></asp:Calendar></td>
                </tr>
                <tr>
                    <td class="ContentLabel" align="right" >
                        <asp:Label
                            ID="lbl_Month_PickDateDateEndDownload"
                            ToolTip="The Month you want to set the Calendar control to"
                            Text="Month:"
                            runat="server"/>
                    </td>
                    <td>
                        <asp:DropDownList
                            ID="ddl_Month_PickDate_DateEndDownload"
                            runat="server">
                            <asp:ListItem Text="January" Value="1" />
                            <asp:ListItem Text="February" Value="2" />
                            <asp:ListItem Text="March" Value="3" />
                            <asp:ListItem Text="April" Value="4" />
                            <asp:ListItem Text="May" Value="5" />
                            <asp:ListItem Text="June" Value="6" />
                            <asp:ListItem Text="July" Value="7" />
                            <asp:ListItem Text="August" Value="8" />
                            <asp:ListItem Text="September" Value="9" />
                            <asp:ListItem Text="October" Value="10" />
                            <asp:ListItem Text="November" Value="1" />
                            <asp:ListItem Text="December" Value="12" />
                        </asp:DropDownList>
                    </td>
                    <td>
                        <asp:Button
                            ID="btn_SetMonth_PickDateDateEndDownload"
                            runat="server"
                            Text="Set Month"
                            CausesValidation="true"
                            EnableTheming="True"
                            OnClick="btn_SetMonth_PickDate_DateEndDownload_Click" />
                    </td>
                </tr>
            </table>
            <br />
            <br />
            <asp:Button
                ID="btn_OK_DatePick_DateEndDownload"
                runat="server"
                Text="OK"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_OK_DatePick_DateEndDownload_Click" />
            <asp:Button
                ID="btn_Cancel_DatePick_DateEndDownload"
                runat="server"
                Text="Cancel"
                CausesValidation="False"
                EnableTheming="True"
                OnClick="btn_Cancel_DatePick_Click" />
        </asp:View>



    </asp:MultiView></asp:Content>