var image;

function show(p) {

	image=document.getElementById(p);
	image.style.visibility="visible";

}


function hide(p) {

	image=document.getElementById(p);
	image.style.visibility="hidden";
	
}