﻿// JScript File


function clearWatermark(textbox) {
    if (textbox.className == "watermark") {
        textbox.value = "";
        textbox.className = "keywords";
    }
}

