$(
    function()
    {
        var $box = $("#PasswordForgottenBox");
        var position = $("#ForgotPassword").offset();
        
        $("#ForgotPassword a").click(function() 
            { 
                $box.show(); 
                $box.children("input:text").val("").focus(); 
                $box.css( { "left" : position.left + 'px' , "top" : position.top + "px" } );
            });
        
        $box.children("input:button").click(function() { sendPassword($box.children("input:text").val()); $box.hide(); });
    }
);


function openPicture(url,width,height)
{
    window.open(url,'Foto','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,scrollbars=no,resizable=yes,copyhistory=no,width='+width+',height='+height);
}
