| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | ini_set('error_reporting', E_ALL | E_STRICT);
|
|---|
| 4 | ini_set('display_errors', 'Off');
|
|---|
| 5 | include 'function/sourcelist.php';
|
|---|
| 6 |
|
|---|
| 7 | include 'function/function.php';
|
|---|
| 8 | ?>
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|---|
| 13 | <html xmlns="http://www.w3.org/1999/xhtml">
|
|---|
| 14 | <head>
|
|---|
| 15 | <meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|---|
| 16 | <title>FACT project</title>
|
|---|
| 17 | <meta name="keywords" content="" />
|
|---|
| 18 | <meta name="description" content="" />
|
|---|
| 19 | <link href="css/styles.css" rel="stylesheet" type="text/css" media="screen" />
|
|---|
| 20 | </head>
|
|---|
| 21 | <body style="background-color: #000;">
|
|---|
| 22 | <div id="bg2"></div>
|
|---|
| 23 | <div id="wrapper1">
|
|---|
| 24 | <div id="header2">
|
|---|
| 25 | <ul>
|
|---|
| 26 | <li><a href="http://www.fact-project.org">FACT <li2>OBSERVATION SCHEDULING</li2></a></li>
|
|---|
| 27 | </ul>
|
|---|
| 28 | <div class="clear"></div>
|
|---|
| 29 | </div>
|
|---|
| 30 | <div id="content_bg_top"></div>
|
|---|
| 31 | <div id="content_box">
|
|---|
| 32 |
|
|---|
| 33 | <br />
|
|---|
| 34 | <div id="column_box">
|
|---|
| 35 | <div id="column1">
|
|---|
| 36 |
|
|---|
| 37 | <div id="calendar" align="center">
|
|---|
| 38 |
|
|---|
| 39 | <?php require_once 'Module/calendar.php'; ?>
|
|---|
| 40 | </div>
|
|---|
| 41 | <br/>
|
|---|
| 42 | <div width="100px">
|
|---|
| 43 | <!-- AKI -->
|
|---|
| 44 | <?php
|
|---|
| 45 | include 'search.php';
|
|---|
| 46 | ?>
|
|---|
| 47 |
|
|---|
| 48 | <br />
|
|---|
| 49 | </div>
|
|---|
| 50 | </div>
|
|---|
| 51 | <div id="column3">
|
|---|
| 52 | <div id="Graph" style="height: 400px"></div>
|
|---|
| 53 |
|
|---|
| 54 | </div>
|
|---|
| 55 | <div class="clear">
|
|---|
| 56 | </div>
|
|---|
| 57 | </div>
|
|---|
| 58 | <div style="width:100%;" align="right">
|
|---|
| 59 | <input type="button" id="save" value="SAVE" class="button" title="Click to save"> <input type="button" id="LoadPrev" value="Load Previous Night" class="button" title="Click to load previous night">
|
|---|
| 60 | </div>
|
|---|
| 61 | <div style="border:2px solid white; width:100%;" id="Scheduling">
|
|---|
| 62 | <script type="text/javascript">
|
|---|
| 63 | $(document).ready(function(){
|
|---|
| 64 | $('#Scheduling').fadeIn('slow').load('Module/Scheduling.php');
|
|---|
| 65 | });
|
|---|
| 66 | </script>
|
|---|
| 67 | </div>
|
|---|
| 68 | <div style="border:2px solid white; width:100%;" align="center" id="SchedulingAppend">
|
|---|
| 69 | </div>
|
|---|
| 70 | <div style="border:2px solid white; width:100%;" align="center">
|
|---|
| 71 | </div>
|
|---|
| 72 |
|
|---|
| 73 | <div id="footer_bot">
|
|---|
| 74 | <p>© 2012 FACT Project Design by i-SoftTech</p>
|
|---|
| 75 | <p>Western Mindanao State University (<strong><a href="http://www.wmsu.edu.ph">WMSU</a>,Philippines</strong>)</p>
|
|---|
| 76 | </div>
|
|---|
| 77 | </div>
|
|---|
| 78 | <div id="data"></div>
|
|---|
| 79 | <div id="day"></div>
|
|---|
| 80 |
|
|---|
| 81 |
|
|---|
| 82 | </div>
|
|---|
| 83 |
|
|---|
| 84 | </body>
|
|---|
| 85 | </html>
|
|---|