﻿
function openbd()
{
    var bd=document.getElementById("bd");
    bd.style.display="";
}

function closebd()
{
    var bd=document.getElementById("bd");
    bd.style.display="none";
}

