/*
 * form.js
 * Simple gestion de formulaire (contenu des champs,
 * focus, blur...
 */
function checkBlur(obj,msg) {
        if ( ! obj.value )
                obj.value = msg;
        obj.style.backgroundColor = "#1a3856";
}
function checkFocus(obj,msg) {
        if ( obj.value == msg )
                obj.value = '';
        obj.style.backgroundColor = "#20476d";
}
