function showdetails(show)
{
    itemToShow = document.getElementById(show);
    itemToShow.style.visibility = 'visible';        
}
function hidedetails(hide)
{
    itemToHide = document.getElementById(hide);
    itemToHide.style.visibility = 'hidden';        
}    