// JavaScript Document
function setHeight(targetLyr, sourceLyr) {
	
	targetLyr.style.height = sourceLyr.offsetHeight;	
}
