$(function(){
    $('form .submit-btn').click(function(){
        $(this).closest('form').submit();
        return false;
    });
    
    $('#livechat').click(function(){
        return popup("http://www.google.com/talk/service/badge/Start?tk=z01q6amlqki5o9gi6cfiu9qmh6ijtp6na61f4ih84jsr1j9ie5j3kshai6osgoi6ufibd2bfgh6a4cna56tmb7ar0jk38kmogp39tieqgbkbb4spu0qdosibuccc4c5at9l0qjcd59uael6k14o8r6tmr373tgaae3krm77r632ev0do6pig2lrr77s4o7oj06k", "Live Chat");
    });
});


function popup(url, title) {
    var new_window = window.open(url, title, 'height=500,width=450');
    if (window.focus) new_window.focus();
    return false;
}
