﻿
// ==========================================
// Form validation and Watermark resets   
// ==========================================

// clear watermarks in textboxes
function ClearWatermark(textbox, testClass, switchClass) {
    if (textbox.className == testClass) {
        textbox.value = "";
        textbox.className = switchClass;
    }
}    