$(document).ready(function() {
	var sidebar = $('#sidebar');
	var content = $('#content');

	// stretch the sidebar to match the height of the content
	var sidebar_height = sidebar.outerHeight({margin:false});
	var content_height = content.outerHeight({margin:false});
	if (sidebar_height < content_height) {
		//alert("content: " + content_height + "\nsidebar: " + sidebar_height);
		sidebar.height(content_height);
	}
});

function popHelp(ID){
	var thisURL = "help.cfm?ID=" + ID;
	popup = window.open(thisURL,"myWindow","height=400,width=400,left=100,top=20,scrollbars=yes,scrollable=yes,resizable=1");
	}
