/*
$HeadURL: svn+secure://dev.comminternet.com/main/websites/celticmusicusa.com/trunk/web/common/javascript/account_login.js $
$LastChangedRevision: 1841 $
$LastChangedDate: 2006-03-29 07:58:37 -0500 (Wed, 29 Mar 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");
    }
}

