// JavaScript Document

function val(theForm)
{
	if (theForm.yourname.value == "")
	{
	alert("Please enter your name.");
	theForm.yourname.focus();
	return (false);
	}


if (theForm.address.value == "")
	{
	alert("Please enter your address.");
	theForm.address.focus();
	return (false);
	}
	
if (theForm.country.value == "")
	{
	alert("Please enter your country.");
	theForm.country.focus();
	return (false);
	}

if (theForm.telephone.value == "")
	{
	alert("Please enter your telephone number.");
	theForm.telephone.focus();
	return (false);
	}

if (theForm.email.value == "")
	{
	alert("Please enter your email address.");
	theForm.email.focus();
	return (false);
	}

if (theForm.cv.value == "")
	{
	alert("Please attach your CV.");
	theForm.cv.focus();
	return (false);
	}

}

function valsendform(theForm)
{
	if (theForm.sendname.value == "")
	{
	alert("Please enter your name.");
	theForm.sendname.focus();
	return (false);
	}
	
	if (theForm.sendemail.value == "")
	{
	alert("Please enter your email.");
	theForm.sendemail.focus();
	return (false);
	}
	
	if (theForm.sendcv.value == "")
	{
	alert("Please attach your CV.");
	theForm.sendcv.focus();
	return (false);
	}
}

