function Show(image_ID) {
if (document.getElementById) document.getElementById(image_ID).style.visibility='visible';
}

function Hide(image_ID) {
if (document.getElementById) document.getElementById(image_ID).style.visibility='hidden';
}
