﻿// JScript File

// Clear a text box with "keyword(s)"
function clearkeywords(id)
{
    var txtbox = document.getElementById(id);
    if (txtbox != null && txtbox.className == "firsttime")
    {
        txtbox.className = "";
        txtbox.value = "";
    }
}