﻿// JScript File
function ShowDrop(num)
{
    //alert('Show: drop' + num);
    document.getElementById('drop' + num).style.display='block'
}

function HideDrop(num)
{
    document.getElementById('drop' + num).style.display='none'
}