var chat = null;
function chatStart(URL) {
    chat = window.open('', 'Thechat', 'width=430,height=348,resizable=0');
    if (chat != null) {
        if (chat.opener == null) {
        chat.opener = self;
        }
    chat.location.href = URL;
    }
}
