﻿/****************************************************************************************/
/* Watermark functions                                                                  */
/****************************************************************************************/

/* Code from http://www.willasrari.com/blog/create-textbox-watermark-using-css-and-javascript/000285.aspx */

function Watermark_Focus(strElement, strText)
{
    if (document.getElementById(strElement).value == strText)
    {
        document.getElementById(strElement).className = ""
        document.getElementById(strElement).value = "";
    }
}

function Watermark_Blur(strElement, strText, strClass)
{
    var strValue = document.getElementById(strElement).value;

    if (strValue == strText || strValue.length == 0)
    {
        document.getElementById(strElement).className = strClass;
        document.getElementById(strElement).value = strText;
    }
    else
    {
        document.getElementById(strElement).className = "";
    }
}