function datacheck(){
	
	m_form = document.getElementById('mailform');
	
	if(!m_form.Sname.value){
		alert('"Your Surname" is not allow empty');
		m_form.Sname.focus();
		return false;
	}
	
	if(!m_form.Fname.value){
		alert('"Forename(s)" is not allow empty');
		m_form.Fname.focus();
		return false;
	}
	
	if(!m_form.mail.value){
		alert('"E-mail" is not allow empty');
		m_form.mail.focus();
		return false;
	}
	
	if(!m_form.text.value){
		alert('"Your Inquiry Message" is not allow empty');
		m_form.text.focus();
		return false;
	}
	
		
		
	document.m_form.action ="cooperation.php";
	document.m_form.submit();

}

function succ(){
	alert('Mail send success');
}