get('i-name').onfocus = function()
  {
  if(get('i-name').value=='Imie i Nazwisko')
    {
    get('i-name').value='';
    }
  }
get('i-name').onblur = function()
  {
  if(get('i-name').value=='')
    {
    get('i-name').value='Imie i Nazwisko';
    }
  }
get('i-mail').onblur = function()
  {
  if(get('i-mail').value=='')
    {
    get('i-mail').value='Adres email';
    }
  }
get('i-mail').onfocus = function()
  {
  if(get('i-mail').value=='Adres email')
    {
    get('i-mail').value='';
    }
  }
get('i-text').onfocus = function()
  {
  if(get('i-text').value=='Treść wiadomości')
    {
    get('i-text').value='';
    }
  }
get('i-text').onblur = function()
  {
  if(get('i-text').value=='')
    {
    get('i-text').value='Treść wiadomości';
    }
  }



