﻿// JScript File
 <!--

 function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
        {
         theText.value = ""
        }
 }
 //-->

function doCheck(theText) 
{
     if (theText.value> 160)
        {
         theText.value = "SI!"
        }
        
 }
 //-->
 
var nav4 = window.Event ? true : false;
function acceptSolNum(evt)
{
    // NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57
    var key = nav4 ? evt.which : evt.keyCode;
    return (key <= 12 || (key >= 48 && key <= 57));
}
//-->


 
