
function CheckValue(component, text) {
    if (component.value == text)
        component.value = "";
    else if (component.value == "")
        component.value = text;
}
