function showPic(path, index)
{
	if (document.getElementById) { 
	
		document.getElementById('picdiv').innerHTML = '<img id="picplace" name="picplace" src="' +path.href+ '" border="0">';
		document.getElementById('picplace').src = path.href; 
		return false; 
	} else { 
		return true; 
	} 
}

