﻿// JScript File
function is_year_b(source,arguments)
{

    var invalue=document.getElementById("ctl00_ContentPlaceHolder1_Wizard1_txt_year").value;
  
    if(invalue>1900&&invalue<2999)
    {

      arguments.IsValid   = true; 
    }
    else
    {
  
       arguments.IsValid   = false; 
    }
}
function is_year_v(source,arguments)
{

    var invalue=document.getElementById("ctl00_ContentPlaceHolder1_Wizard1_txt_year_v").value;
 
    if(invalue>1900&&invalue<2999)
    {

      arguments.IsValid   = true; 
    }
    else
    {

       arguments.IsValid   = false; 
    }
}

