function noImage(id) {
    document.getElementById(id).src = 'http://www.ifished.com/outdoors/images/noimage.jpg';
}    

function imageResize(id, width, height) {
    img = document.getElementById(id);
    if (img.height > height) {
        img.height = height;
    }    
    if (img.width > width) {
        img.width = width;
    }    
}    

