<!--javascript
var background_visible = 0;

function toggle_background() {

    var agt=navigator.appName.toLowerCase();
    var background_link = document.getElementById("background_trigger");

    var contentPane = document.getElementById("contentPane");
    var contentPaneStyle = contentPane.style;

    if (agt == "netscape")
    {
        if (background_visible == 0)
        {
            contentPaneStyle.zIndex = -1;
        }
        else
        {
            contentPaneStyle.zIndex = 0;
        }
    }
    else
    {
        if (background_visible == 0)
        {
            contentPaneStyle.display= "none";
        }
        else
        {
            contentPaneStyle.display= "block";
        }
    }

    if (background_visible == 0)
    {
        background_link.firstChild.nodeValue = "Restore Content";
        background_visible = 1;
    }
    else
    {
        background_link.firstChild.nodeValue = "View Background";
        background_visible = 0;
    }
}
function launch_music() {
    winStats='toolbar=no,location=no,directories=no,menubar=no,'
    winStats+='scrollbars=no,width=250,height=100'
    if (navigator.appName.indexOf("Microsoft")>=0) {
        winStats+=',left=10,top=25'
    }
    else{
        winStats+=',screenX=10,screenY=25'
    }
    floater=window.open("music/music_chill.html","music_player",winStats)     
}


//-->
