Listen(window,'load',Load);

function Load()
{
   //clear/fill for form fields
   if (elemById('pliv_contact'))
   {
      elemById('pliv_contact_name').onfocus = clearOnFirstFocus;
      elemById('pliv_contact_email').onfocus = clearOnFirstFocus;
      elemById('pliv_contact_text').onfocus = clearOnFirstFocus;
   }

   function clearOnFirstFocus() {
      if (this.getAttribute('focused') != '1')
      {
         this.value = '';
         this.setAttribute('focused','1');
      }
   }
}
