//
// Microchip event library functions
//

// Function implementation

function onTextFocusEvent(objEntry)
{
    // clear the value
    var strEntry = objEntry.value.toLowerCase();
    if (strEntry.substring(0,  6) == "(enter")
        objEntry.value = "";
    
    // give it the correct style
    objEntry.maxLength = "16";
    objEntry.className = "ActiveS";
}
