﻿function changeBoxUsername()
        {
            document.getElementById('FakeUsernameDiv').style.display='none';
            document.getElementById('UsernameDiv').style.display='';
            document.getElementById('ctl00_toppane1_Logintop1_LoginView1_Login1_UserName').focus();
        }
        function restoreBoxUsername()
        {
            if(document.getElementById('ctl00_toppane1_Logintop1_LoginView1_Login1_UserName').value=='')
            {
              document.getElementById('FakeUsernameDiv').style.display='';
              document.getElementById('UsernameDiv').style.display='none';
            }
        }

        function changeBoxPassword()
        {
            document.getElementById('FakePasswordDiv').style.display='none';
            document.getElementById('PasswordDiv').style.display='';
            document.getElementById('ctl00_toppane1_Logintop1_LoginView1_Login1_Password').focus();            
        }
        function restoreBoxPassword()
        {
            if(document.getElementById('ctl00_toppane1_Logintop1_LoginView1_Login1_Password').value=='')
            {
              document.getElementById('FakePasswordDiv').style.display='';
              document.getElementById('PasswordDiv').style.display='none';
            }
        }

        function changeBoxPassword1() {
            document.getElementById('FakePasswordDiv').style.display = 'none';
            document.getElementById('PasswordDiv').style.display = '';
            document.getElementById('ctl00_ContentPlaceHolder1_Login1_Password').focus();
        }
        function restoreBoxPassword1() {
            if (document.getElementById('ctl00_ContentPlaceHolder1_Login1_Password').value == '') {
                document.getElementById('FakePasswordDiv').style.display = '';
                document.getElementById('PasswordDiv').style.display = 'none';
            }
        }