function submete_news(lang)
{
	flag=0;
	if(document.news.email.value=='')
	{
		if(lang=="1")
			alert('Por favor introduza o seu Email');
		else
			alert('Please enter your email');
		flag=1;
	}
	else if(!document.news.email.value.match(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*\.(\w{2}|(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum))$/))
	{
		if(lang=="1")
			alert('O Email introduzido não é válido');
		else
			alert('Email is invalid');
		flag=1;
	}
	if(flag==0)
		document.news.submit();
	else
		return false;
}
x= screen.width;
y=  screen.height;
t = x / 2;
l = y / 2;

function popUpLegenda(foto,id,tabela,lang)
{
	window.open("popuplegenda.php?foto="+foto+"&id="+id+"&loc="+tabela+"&lang="+lang,"Foto","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=50,height=50,top="+t+",left="+l+"");
}
