function SpecificValidate()
{      
//      if( ! ValidateWireGrinding() ) return false;
      return true;
}

function ValidateL0_Pitch_d()
{
      
      return true;
      
}



function ValidateWireGrinding()
{
      var chkGrinding   = Elem("grinding");
      if(!chkGrinding) return true;
      if(!chkGrinding.checked) return true;
      var oRangeWire = new Range("d");
      if(!oRangeWire.OK) return true;                         
      var bOK = true;
      if(oRangeWire.IsSingle) if( oRangeWire.Single > 3 ) return true;
      if( oRangeWire.Max > 3 )  return true;
                  
      messageBox(IfGringingWireDiameter);      
      Elem("d_min").focus();
      return false;
      
}
