JQM Time box is showing error message There is no mode by that name loaded / mode not given

JQM Time box is showing error message There is no mode by that name loaded / mode not given

Hi,
I am trying to implement jquery DateBox and TimeBox.
DateBox is working. But timebox is giving the error " There is no mode by that name loaded / mode not given"


Another problem I am facing is DateBox/time box popup is displaying behind my data-entry popup. Is there any way to increase the z-index of time/date box?






Code
=====
<head>
<title>Registration</title>


<link rel="stylesheet" type="text/css" href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css" />
<link rel="stylesheet" type="text/css" href="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.min.css" /> 


<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script> 
<script type="text/javascript" src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>




<script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.core.min.js"></script>
<script type="text/javascript" src="http://dev.jtsage.com/cdn/datebox/latest/jqm-datebox.mode.calbox.min.js"></script>


</head>
<body>


    <div data-role="page" data-theme="a">


    <a href="#createMatchPopup" data-rel="popup" data-position-to="window">Open Popup</a>
    
    <div id="createMatchPopup" data-role="popup" data-theme="b">


                <div data-role="header" data-theme="b">
                    <h1>Registration</h1>
                </div>


                 <label for="mydate"></label>
                <input name="mydate" id="mydate" type="date" data-role="datebox" placeholder="Date"
                   data-options='{"mode": "calbox", "useTodayButton": true}'>
   
 
                <label for="mytime"></label>


                <input name="mydate" id="mytime" type="date" data-role="datebox" placeholder="Time"
                   data-options='{"mode": "timebox", "overrideTimeFormat": 12}'>
                   
 </div>


 </div>
 
</body>