﻿// JScript File


function ChkInputFields()
{   
    if(document.getElementById('txtYourName').value == '')
    {
        alert('Enter your name');
        
        document.getElementById('txtYourName').focus();
        return false;
    }
    if(document.getElementById('txtYourEmail').value == '')
    {
        alert('Enter your email');
        
        document.getElementById('txtYourEmail').focus();
        return false;
    }
    else if(document.getElementById('txtYourEmail').value != "")
    {
            var tEmail=CheckValidEmail(document.getElementById("txtYourEmail"));
              if(tEmail==false)
                return false;
    }
    if(document.getElementById('txtFriendName').value == '')
    {
        alert('Enter your friend name');
        
        document.getElementById('txtFriendName').focus();
        return false;
    }
    if(document.getElementById('txtFriendsEmail').value == '')
    {
        alert('Enter your friend email');
        
        document.getElementById('txtFriendsEmail').focus();
        return false;
    }
    else if(document.getElementById('txtFriendsEmail').value != "")
    {
            var tEmail=CheckValidEmail(document.getElementById("txtFriendsEmail"));
              if(tEmail==false)
                return false;
    }
   
    if(document.getElementById("txtCaptcha").value=="")
    {
        alert("Enter Text in Image");
        document.getElementById("txtCaptcha").focus();
        return false;
    }
    
    else
    {
        return true;
    }     
}

