function changeImage(id, image) {
    if (document.getElementById) {
        document.getElementById(id).src = image;
    }
}

function openWindow(image) {
    window.open(image, '_blank', 'width=640,height=480');
    return false;
}
