function pokazIMG (whichpic) { 
	if (document.getElementById) { 
		document.getElementById('imgbox').src = whichpic.href; 
		if (whichpic.title) { 
			document.getElementById('linkbox').href = whichpic.title; 
		} else { 
			document.getElementById('linkbox').href = whichpic.childNodes[0].nodeValue; 
		} 
		return false; 
	} else { 
		return true; 
	} 
}





