﻿/// <reference path="jquery-1.4.1-vsdoc.js" />
function txt_UserName_Focus() {
    var txt_UserName = document.getElementById("Right1_Email");
    if (txt_UserName.value == "Email/Courrier") {
        txt_UserName.value = "";
        txt_UserName.style.color = "#000000";
    }
}
function txt_Password_Focus() {
    var txt_UserName = document.getElementById("Right1_Email");
    var txt_Password = document.getElementById("Right1_Password");
    if (txt_Password.value == "Password") {
        txt_Password.style.color = "#000000";
        txt_Password.value = "";
    }
}

function txt_UserName_Blur() {
    var txt_UserName = document.getElementById("Right1_Email");
    if (txt_UserName.value == "") {
        txt_UserName.value = "Email/Courrier";
        txt_UserName.style.color = "#656D77";
    }
}
function txt_Password_Blur() {
    var txt_Password = document.getElementById("Right1_Password");
    if (txt_Password.value == "") {
        txt_Password.value = "Password";
        txt_Password.style.color = "#656D77";
    }
}
function GetLogin() {

    $("#Right1_Password").val("Password");
}
$(function () {
    GetLogin();
});

