function check_email(e)
{
ok = "1234567890qwertyuiop[]asdfghjklzxcvbnm.@-_QWERTYUIOPASDFGHJKLZXCVBNM";

for(i=0; i < e.length ;i++)
{
 if(ok.indexOf(e.charAt(i))<0){return (false);}
}

if (document.images)
{
 re = /(@.*@)|(\.\.)|(^\.)|(^@)|(@$)|(\.$)|(@\.)/;
 re_two = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
  if (!e.match(re) && e.match(re_two)){return (-1);}
}
}


function check_choroby_form(f)
{
 
 if(f.chorobymeno.value < 1)
 {
 alert("Prosím zadajte Vaše meno.");
 return false;
 }
 
 if(!check_email(f.chorobyemail.value))
 {
 alert("Prosím zadajte platnú emailovú adresu.");
 return false;
 }
 
 if(f.chorobytel.value < 1)
 {
 alert("Prosím zadajte Vaše tel. číslo.");
 return false;
 }
  
}

/*$(document).ready(function() {
						   
	var jobb=$(".tartalom").height();
	$(".sidebar-middle2").height(jobb + 100);
});

$(document).ready(function() {

var jobb=$("#right").height();
$("#content").height(jobb);
});*/

