﻿
function ViewList(_strID) {
    // hide all menu's first
    $("ul.imageList").hide();
    // show the one now
    $("#imageList_" + _strID).show();
    $("#imageList_" + _strID).focus();

}
