function big_(pic,left,top)
{
  pic.style.left   = left;
  pic.style.top    = top;
  pic.style.height = 27;
  pic.style.width  = 27;
}

function small_(pic,left,top)
{
  pic.style.left   =  left;
  pic.style.top    =  top; 
  pic.style.height = 15;
  pic.style.width  = 15;
}

function check_it(formik)
{
  if (!formik.nick.value) 
    {
	  alert("Zadejte vaše jméno!!!");
	  return false;	  
	}
  else if (!formik.mail.value) 
    {
	  alert("Zadejte váš e-mail!!!");
	  return false;
	}
  else if (!formik.memo.value) 
    {
	  alert("Zadejte text vzkazu!!!");
	  return false;
	}			  
	else return true;
}
