window.onload= function(){
	if (document.getElementById('extraQuestionName')){
		var names = document.getElementById('extraQuestionName').getElementsByTagName('li');
		var values = document.getElementById('extraQuestionValue').getElementsByTagName('li');
		for( child=0; child < names.length; child++ ){
			if (names[child].offsetHeight < values[child].offsetHeight){
				names[child].style.height = values[child].offsetHeight + 'px';
			} else if (names[child].offsetHeight > values[child].offsetHeight) {
				values[child].style.height = names[child].offsetHeight + 'px';
			}
		}
	}
}

<!--
	function win(fileName) {
		myFloater = window.open('','myWindow','scrollbars=yes,status=no,width=300,height=300')
		myFloater.location.href = fileName;
		
		if (window.focus) {myFloater.focus()}
		
	}
	function winimage(fileName,width,height) {
		myFloater = window.open('','myWindow','scrollbars=yes,resizable=yes,status=no,width=' + width + ',height=' + height)
		myFloater.location.href = fileName;
	}
	-->
