﻿function InitMiniLogin() {
    var height = "auto";
    if ($.browser.msie) {
        height = 150;
        $("#dialog_forgot_password input").css("background-color", "#444444");
    }
    $("#dialog").dialog("destroy");
    var dlg = $("#dialog_forgot_password").dialog({
        closeText: 'close',
        draggable: false,
        resizable: false,
        width: 452,
        //height: 'auto',
        height: height,
        minHeight: '80px',
        modal: true,
        autoOpen: false
    });

    

    dlg.parent().appendTo($("#aspnetForm"));


    $("#newPassword_dialog").click(function() {
    $("#dialog_forgot_password").dialog("open");
    });
}
