function check_form()
{
    var name = document.form1.name.value;

    if (!name)
    {
        alert("Full Name is missing.");
	document.form1.name.focus();
        return false;
    }
    else
    {
        return true;
    }     
}