
function loadHAWValues( id, type , element ){
	if( type == 1 ){
		$("#" + id + "_hwSummary").html( $("#" + id + "_hSummaryValue").html() );
		$("#" + id + "_whyButton").html( "<a href=\"javascript:loadHAWValues('" + id + "',2,this);\" >Why</a>" );
		$("#" + id + "_howButton").html( "How" );
	}
	else if( type == 2 ){
		$("#" + id + "_hwSummary").html( $("#" + id + "_wSummaryValue").html() );
		$("#" + id + "_howButton").html( "<a href=\"javascript:loadHAWValues('" + id + "',1,this);\" >How</a>" );
		$("#" + id + "_whyButton").html( "Why" );
	}
	$("#" + id + "_hwSummaryCloseButton").click(tb_remove);
	
	tb_show(null ,"#TB_inline?height=206&width=256&inlineId=" + id + "_hwContent&modal=false", false);
}
