// JavaScript Document
function checkMail(form)
	{
	
		
			re = new RegExp("^[^.]+(\.[^.]+)*@([^.]+[.])+[a-z]{2,4}$");
			if (!re.test(form.mail.value))
			{
				alert("Neplatný formát e-mail adresy!"); 
				form.mail.focus();
				return false;
			}
		
	}
function hide(id) 
		{
		el=document.getElementById(id).style; 
		el.display='none';
		}
function windowCZ(id)
{
path="http://oneworld.cz/ow/2008/pop.php?id="+id;
window.open(path ,'new','width=350,height=400,menubar=no,resizable=yes,scrollbars=yes,left=300,top=100'); 

}
function windowEN(id)
{
path="http://oneworld.cz/ow/2008/popEN.php?id="+id;
window.open(path ,'new','width=350,height=400,menubar=no,resizable=yes,scrollbars=yes,left=300,top=100'); 

}

			