<!--
/**
*   mouse.js - cmodule onty functions
*   
*   @copyright     Alletha 2004
*   @since         23-03-2004
*   @version       0.3
*   @author        Alletha P-team <info@alletha.nl>
*   @project       Ontdeknet
*/


    function init()
    {      
      document.body.onmousemove = mouseAction;
    }
    
    function mouseAction()
    { 
      if(typeof(window.top.content)=='object' && typeof(parent.content.cancelSleep)=='function' )
      {        
        parent.content.cancelSleep()
      }
    }

//-->

