12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <style>
- p.hidden{
- display:none;
- }
- table {margin-bottom:20px;table-layout:fixed; border-collapse:collapse; border-spacing:10px}
- table.t1 {width:400px; border:1px solid black}
- table.t1 th {border:1px solid black;padding:4px;background-color:#e0e0e0}
- table.t1 td {text-align:center}
- table.t2 {width:800px; border:1px solid black;}
- table.t2 th {border:1px solid black;padding:4px;background-color:#e0e0e0}
- table.t2 td {border:1px solid black; text-align:center}
- table.headTable {width:800px}
- table.headTable th {font-size:20px,text-align:center,background-color:#e0e0e0}
- table.headTable td {font-size:20px,text-align:center}
- div.d1 {text-align:center; width=400px; background-color:#e0e0e0;
- font-size: 20px; margin-bottom:20px}
- </style>
- <div class="d1">Clinical Report Form Portal</div>
- <div id="generalDataHead"></div>
- <div id="generalDataDiv" style="display:none">
- <table id="generalDataTable" cellspacing="2" cellpadding="5" border="0">
- <tr><td>Eudra CT Number: </td><td><strong id="eudraCTNumber">Loading</strong></td></tr>
- <tr><td>Study Sponsor: </td><td><strong id="studySponsor">Loading</strong></td></tr>
- <tr><td>Study Coordinator: </td><td><strong id="studyCoordinator">Loading</strong></td></tr>
- <tr><td>Regulatory authority Entry Number:</td><td><strong id="regulatoryNumber">Loading</strong></td></tr>
- </table>
- </div>
- <div id="pickFormHead"></div>
- <div id="pickFormDiv" style="display:none">
- <div id="formDiv"></div>
- <div id="selectFormDiv" style="display:block"></div>
- <div id="listDiv"></div>
- </div>
- <div id="startDiv"></div>
- <div id="debugAreaHead"></div>
- <div id="debugAreaDiv" style="display:block">
- <textarea cols="95" rows="5" name="formStatus" id="formStatus">Entering data</textarea>
- </div>
- <script type="text/javascript">
- document.getElementById("formStatus").value+="\nStarting";
- window.onload = init();
- // Initialize the form by populating the Reagent drop-down list and
- // entering data associated with the current user.
- function init() {
- var config=new Object();
- config.document=document;
- config.debugId='formStatus';
- print(config,"Init");
- return;
- }
-
-
- </script>
|