function showPhoto(photo,width,height) 
{
	myWin= open("/showphoto.php?url="+photo,"photo","width="+width+",height="+height+",status=no,toolbar=no,scrollbars=no,resizeable=yes");
	myWin.focus();
}

function sendMail(lang)
{
	name = document.getElementById('name').value;
	email = document.getElementById('email').value;
	message = document.getElementById('message').value;

	myWin= open("/mail.php?name="+name+"&email="+email+"&message="+message+"&lang="+lang,"photo","width=300,height=150,status=no,toolbar=no,scrollbars=no,resizeable=yes");
}