var Members = {
	ViewMemberProfile:function(id) {
		var url = "index.cfm?action=Members_ViewMemberProfile&id="+id;
		new Ajax.Request( url, {asynchronous:true, evalScripts:false, onSuccess:Members.ShowMemberProfile_onSuccess, onFailure:errFunc});		
		return false;
	}
	,ShowMemberProfile_onSuccess:function(t) {
		z = parseJSON( t.responseText );
		$("lightboxHolder").update(z.memberProfileHTML);
		Lightbox.showBoxByID( "lightboxHolder", 700, 500, true );		
	}
	,HideLightBox:function() {		
		Element.hide('box');
		Element.hide('overlay');
	}
}
