function check(){
	var name=document.getElementById('contact_name').value;
	var title=document.getElementById('contact_title').value;
	var company=document.getElementById('contact_company').value;
	var email=document.getElementById('contact_email').value;
	var phone=document.getElementById('contact_phone').value;
	var address=document.getElementById('contact_address').value;
	var message=document.getElementById('message').value;
	var rnd=document.getElementById('rnd').value;

	if(name=='' || title=='' || company=='' || email=='' || phone=='' || address=='' || message=='' || rnd==''){
		alert("Please complete the required fields");
		return false;
	}else{
		return true;
	}	
}