$(function () {
    function openChatWindow() {
        window.open('http://www.websitealive9.com/2055/rRouter.asp?groupid=2055&departmentid=0&websiteid=0','guest','width=575,height=490');
        // OLD: window.open('http://a3.websitealive.com/1599/rRouter.asp?groupid=1599&websiteid=0&departmentid=0&dl='+escape(document.location.href),'','width=400,height=400');
    }
    $('.aliveChat a').click(function (e) {
        openChatWindow();
        
        e.stopPropagation();
        e.preventDefault();
        return false;
    });
    
    if (location.href.match(/\.ro\/$/)) openChatWindow();
});

