﻿function showImage(imgId,typ) {
    var objImg = document.getElementById(imgId);
    if (objImg)
        objImg.src = typ;
}

