function show(id) 
    {
	for (i=1; i<=10; i++) {
		GetThePic = document.getElementById('pic'+i);
		if (GetThePic) {
			GetThePic.style.display='none';
			}
		}
	DisplayPic= "pic"+id;
	document.getElementById(DisplayPic).style.display='block';
}