	
	// JavaScript Document
	function f(nameSrc,texto){
		
		var imgsrc 
		//nameSrc = nameSrc.replace(/^.*\?(.+)$/,'$1');
		nameSrc = nameSrc.replace(/(^.*)low-(.+)\.gif$/,'$1high-$2.jpg');
		
		//imgsrc = nameSrc.replace(".gif", ".jpg");
		//imgsrc = imgsrc.replace("low", "high");
		//document.getElementById('LoadContainer').style.visibility='visible'
		
		document.getElementById('photoelem').src=nameSrc;
		document.getElementById('photoelem').alt=texto;
		//document.getElementById('LoadContainer').style.visibility='hidden'
	}	
	
	function showPic (whichpic) {

	 if (document.getElementById) {
		document.getElementById('photoelem').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;
	 }
	}
	

