function checkSearch(fieldObj)
{
    if (fieldObj.value == "Enter keyword(s)") {
        fieldObj.value = "";
        fieldObj.style.color = "#000000";
    }
    else if (fieldObj.value == "") {
        fieldObj.value = "Enter keyword(s)";
        fieldObj.style.color = "#999999";
    }
}

function checkDefaultSearch(fieldObj)
{
    if (fieldObj.value == "Enter keyword(s)") {
        fieldObj.value = "";
        fieldObj.style.color = "#000000";
    }
}

function checkEmail(fieldObj)
{
    if (fieldObj.value == "Enter email address") {
        fieldObj.value = "";
        fieldObj.style.color = "#000000";
    }
    else if (fieldObj.value == "") {
        fieldObj.value = "Enter email address";
        fieldObj.style.color = "#666666";
    }
}

function checkDefaultEmail(fieldObj)
{
    if (fieldObj.value == "Enter email address") {
        fieldObj.value = "";
        fieldObj.style.color = "#000000";
    }
}

