﻿// JScript File

function hidePlayer()
{
    var d = document.getElementById('mp3Container');
    d.style.display = "none";
}

function showPlayer()
{
    var d = document.getElementById('mp3Container');
    d.style.display = "";
}

function hideVideo()
{
    var d = document.getElementById('videoContainer');
    d.style.display = "none";
}

function showVideo()
{
    var d = document.getElementById('videoContainer');
    d.style.display = "";
}

function centrepopup()
{
    alert('hello');
}
