// chatroom.js
// Ron Lau 2009
// Copyright Netcast Platform 2009
//
// Created on: 10/07/2009
// <script>

function enableSnd()
{
    document.getElementById("sndBut").src = "images/gaybar/gaybar_chat_sound_on.jpg";
    document.getElementById("chatIFrame").src = "http://chatroll.com/gayradio/embed?fgcolor=663399&bgcolor=663399&textbgcolor=ffffff&textfgcolor=9933ff&sound=1&border=1&w=$0";
}

function disableSnd()
{
    document.getElementById("sndBut").src = "images/gaybar/gaybar_chat_sound_off.jpg";
    document.getElementById("chatIFrame").src = "http://chatroll.com/gayradio/embed?fgcolor=663399&bgcolor=663399&textbgcolor=ffffff&textfgcolor=9933ff&sound=0&border=1&w=$0";
}

function toggleSnd()
{
    if(typeof toggleSnd.snd == 'undefined')
        toggleSnd.snd = true;
    if(toggleSnd.snd)
        disableSnd();
    else
        enableSnd();
    toggleSnd.snd = !toggleSnd.snd;
}

// </script>
