/*
$HeadURL: svn+secure://dev.comminternet.com/main/websites/celticmusicusa.com/trunk/web/common/framework/javascript/cxTextboxPlaceholderText.js $
$LastChangedRevision: 2656 $
$LastChangedDate: 2006-10-02 00:00:39 -0400 (Mon, 02 Oct 2006) $
*/

function cxTextboxPlaceholderText_initialize(pElement, pText)
{
    pElement.onclick = function() { cxTextboxPlaceholderText_remove(pElement, pText); };
    pElement.onblur = function() { cxTextboxPlaceholderText_add(pElement, pText); };

    cxTextboxPlaceholderText_add(pElement, pText);
}

function cxTextboxPlaceholderText_add(pElement, pText)
{
    if (pElement.value == pText || pElement.value == "")
        cxGeneral_addClassName(pElement, "placeholder");
    if (pElement.value == "")
        pElement.value = pText;
}

function cxTextboxPlaceholderText_remove(pElement, pText)
{
    if (pElement.value == pText)
    {
        pElement.value = "";
        cxGeneral_removeClassName(pElement, "placeholder");
    }
}
