Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

<%@LANGUAGE="VBSCRIPT"%>
<%
'=====================================================
'|  form_new_sdk_version.asp
'|  Create a new version of an SDK
'|
'=====================================================
%>
<%
Option explicit
' Good idea to set when using redirect
Response.Expires = 0   ' always load the page, dont store
%>
<!--#include file="common/conf.asp"-->
<!--#include file="common/globals.asp"-->
<!--#include file="common/formating.asp"-->
<!--#include file="common/qstr.asp"-->
<!--#include file="common/common_subs.asp"-->
<%
'------------ ACCESS CONTROL ------------------
%>
<!--#include file="_access_control_general.asp"-->
<%
'------------ Variable Definition -------------
'------------ Constants Declaration -----------
'------------ Variable Init -------------------
'----------------------------------------------
%>
<html>
   <head>
        <title>Release Manager</title>
        <meta http-equiv="Pragma" content="no-cache">
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <link rel="stylesheet" href="images/release_manager_style.css" type="text/css">
        <link rel="stylesheet" href="images/navigation.css" type="text/css">
        <script language="JavaScript" src="images/common.js"></script>
        <script type="text/javascript" language="javascript" src="jquery/jquery.js"></script>
        <script type="text/javascript" language="javascript" src="jquery/jquery-ui.js"></script>
        <link rel="stylesheet" href="jquery/jquery-ui.css" type="text/css">
        <script src="jquery/form-validator/jquery.form-validator.min.js"></script>
        <link rel="stylesheet" href="jquery/form-validator.css" type="text/css">
        <!-- TIPS -->
        <!-- DROPDOWN MENUS -->
        <!--#include file="_menu_def.asp"-->
        <script language="JavaScript1.2" src="images/popup_menu.js"></script>
        <script language="JavaScript" type="text/javascript">
            $(document).ready(function() {
                $('#popmenu').load('sdk_version_new.asp', {rtag_id : <%=parRtag_id%>});
            });
        </script>
        <style type="text/css">
        </style>
   </head>
   <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">

      <!-- MENU LAYERS -------------------------------------->
      <div id="popmenu" class="menuskin" onmouseover="clearhidemenu();highlightmenu(event,'on')"
         onmouseout="highlightmenu(event,'off');dynamichide(event)">
      </div>
      <!-- TIPS LAYERS -------------------------------------->
      <div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
      <!----------------------------------------------------->
      <!-- HEADER -->
      <!--#include file="_header.asp"-->
      <!-- BODY ---->
      <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#EEEFEF">
         <tr>
            <td width="10%" background="images/bg_home_orange.gif" valign="top"></td>
            <td width="5%"  rowspan="2" valign="top"></td>
            <td width="80%" rowspan="2" align="center" valign="top">
               <!-- Main display panel -->
               <table class="full_table">
                  <!-- Section Header ---->
                  <tr>
                     <td nowrap class="form_ttl">DON"T KNOW YET</td>
                  </tr>

                  <!-- Section Body ---->
                  <tr>
                  <td>
                    <div class="rounded_box">
                        <div class=bg_dialog>&nbsp;</div>
                    </div>
                </table>
                <!-- End Main display panel -->
            <td width="5%"  rowspan="2" valign="top"></td>
         </tr>
         <tr>
            <td valign="bottom" align="center" background="images/bg_home_orange.gif"></td>
            <td background="images/bg_lght_gray.gif" valign="top"><img src="images/h_trsp_dot.gif" width="1" height="500"></td>
        </tr>
      </table>
<!-- FOOTER -->
<!--#include file="_footer.asp"-->
</body>
</html>
<%
Call Destroy_All_Objects
%>