
function resize(imgID, w, h) {

    var temp = document.getElementById(imgID); 
    temp.width = w;
    temp.height = h;
}


function showIt(origImg, showDiv, showImg, w, h) {

    var orig   = document.getElementById(origImg);
    var div    = document.getElementById(showDiv);
    var bigImg = document.getElementById(showImg);
    
    bigImg.src    = orig.src;
    bigImg.width  = w;
    bigImg.height = h;
    
    div.style.display = "inline";
}


function hideIt(showDiv) {

    var div = document.getElementById(showDiv);
    div.style.display = "none";
}



function resize2(imgID, w, h, imgName) {

    var temp    = document.getElementById(imgID); 
    temp.src    = imgName;
    temp.width  = w;
    temp.height = h;
}


function showIt2(imgName, showDiv, showImg, w, h) {

    var div    = document.getElementById(showDiv);
    var bigImg = document.getElementById(showImg);
    
    bigImg.src    = imgName;
    bigImg.width  = w;
    bigImg.height = h;
    
    div.style.display = "inline";
}



