    window.onload = function()
    {
      // WRITTEN BY DEL
      // lotsofcode.com
      
      // Get the elements of the main "cloud" form
      e = document.forms['cloud'].elements;
      // Get the length of all the elements
      l = e.length;
      for (var i = 0; i < l; i++) {
        // If the element is a textarea
        if (e[i].type == 'textarea') {
          // select the element as we click on it
          e[i].onclick = e[i].select;
        }
      }
    }

