function CheckForm(thisForm) {
	if (thisForm.sender_name.value == "") {
		alert('Falta escrever o teu nome!');
		return false;		
		}
	else if (thisForm.sender_email.value == "") {
		alert('Falta escrever o teu email!');
		return false;
		}
	else if (thisForm.recip_name.value == "") {
		alert('Falta o nome do destinatário!');
		return false;		
		}

	else if (thisForm.recip_email.value == "") {
		alert('Falta o email do destinatário!');
		return false;
		}
	}


