function showBuySafePanel()
{
    document.getElementById('buySafePanel').style.visibility = 'visible';
    document.getElementById('buySafePanel').style.height = 354;
    document.body.style.cursor = 'hand';

}

function hideBuySafePanel()
{
    document.getElementById('buySafePanel').style.visibility = 'hidden';
    document.getElementById('buySafePanel').style.height = 0;
    document.body.style.cursor = 'default';

}

function checkBuySafe()
{
    if(document.getElementById('buySafeCheck').checked)
    {
        document.getElementById('buySafeCheck').checked = "";
    }
    else
    {
        document.getElementById('buySafeCheck').checked = "checked";
    }  
}