﻿
		window.onload = function()
		{
			document.getElementById( "ctl00_ContentPlaceHolder1_mailControl1_txtName" ).onclick = function()
			{
				if( this.value == 'Name' )
				{
					this.value = '';
				}
			}
		}
  function clearText() { 
			if(document.form1.txtName.value == "(enter something here)") 
                document.form1.txtName.value = "" 
				
            } 
            
            function resetText() { 
                if(document.form1.txtName.value == "") 
                    document.form1.txtName.value = "(enter something here)" 
            } 
            
FocusFunction("<%=ctl00_ContentPlaceHolder1_mailControl1_txtName.ClientID %>");


function FocusFunction(textboxClientId)
{
document.getElementById(textboxClientId).focus();
}

