<script type="text/javascript" language="javascript">  function showPic (whichpic) { Êif (document.getElementById) { ÊÊdocument.getElementById('placeholder')ÈÊÊ.src = whichpic.href; ÊÊif (whichpic.title) { ÊÊÊdocument.getElementById('desc')ÈÊÊ.childNodes[0].nodeValue = whichpic.title; ÊÊ} else { ÊÊÊdocument.getElementById('desc')ÈÊÊ.childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; ÊÊ} ÊÊreturn false; Ê} else { ÊÊreturn true; Ê} }function showPic2 (whichpic) { 	if (document.getElementById) { 		document.getElementById('placeholder2').src = whichpic.href; 		if (whichpic.title) { 			document.getElementById('desc2').childNodes[0].nodeValue = whichpic.title; 		} else { 			document.getElementById('desc2').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 		} 		return false; 	} else { 		return true; 	} }function showPic3 (whichpic) { 	if (document.getElementById) { 		document.getElementById('placeholder3').src = whichpic.href; 		if (whichpic.title) { 			document.getElementById('desc3').childNodes[0].nodeValue = whichpic.title; 		} else { 			document.getElementById('desc3').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 		} 		return false; 	} else { 		return true; 	} }function toggle( targetId ){  if (document.getElementById){  		target = document.getElementById( targetId );  			if (target.style.display == "none"){  				target.style.display = "";  			} else {  				target.style.display = "none";  			}  	}} </script>
