if (top!=self) top.location.href=self.location.href;

$(document).ready(function(){

 $("#post_f").submit(function(){
  if (!$("#nick").val()) {
   alert("Musíte zadat jméno");
   $("#nick").focus();
   return false;
  } else if (!$("#email").val()) {
   alert("Musíte zadat e-mail");
   $("#email").focus();
   return false;
  } else if (!$("#topic").val()) {
   alert("Musíte zadat nadpis");
   $("#topic").focus();
   return false;
  } else if (!$("#text").val()) {
   alert("Musíte zadat dotaz");
   $("#text").focus();
   return false;
  } else
   return true; 
 });

});

