function CheckMail(s)
{
	re=/^[\s]*([\w\d-]+(\.[\w\d-]+)*)\@(([\w\d-]+(\.[\w\d-]+)*)\.([\w]{2,3}))[\s]*$/g;
	r=s.replace(re, "$1");
	if(r!=s) 
		return true
	else 
		return false
}

function CheckEmailInForm()//
{
	document.forum.emailing.disabled = !CheckMail(document.forum.email.value)
}
function TryDelete(id)
{
	if(event.ctrlKey)
	{
		window.open("trydeleteforum.php?id="+id,null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
	}
}
