This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function ComputeCheckDigit(strMCN){ | |
| var i; | |
| var intStep1; | |
| var intStep2; | |
| var intStep3; | |
| var intStep4; | |
| var intDigit; | |
| strMCN=Left(strMCN,7); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ------------------------------------------------------ | |
| // Hey, this just an example, but you get the idea | |
| // ------------------------------------------------------ | |
| // Simple function | |
| function alertUser(message){ | |
| // a popup will occur here listing out the desired message; | |
| alert(message); | |