function fnClearMe(textbox)
{
    if(textbox.value == textbox.defaultValue)
    {
       textbox.value = "";
       textbox.style.color = "#6e6e6e";
    }
}

function fnCheckForUserValue(textbox)
{
    if(textbox.value == "")
    {
        textbox.value = textbox.defaultValue;
        textbox.style.color = "#6e6e6e";
    }
}
