﻿function toggleText(el, text, focus) {
    if (focus && el.value == text)
        el.value = '';

    if (!focus && el.value == '')
        el.value = text;
}

function togglePassword() {
    $('#passContainer').style.display = "none";
    $('.loginBox')[0].style.display = "block";
    $('.loginBox')[0].focus();
}
