var getMyclub = function( elem ){
	
	var address = elem.attr('rel');
	
	var dialog = new DialogBox();
	
	dialog.title = constant.MY_CLUB;
	dialog.ajax  = true;
	dialog.url	 = address;
	dialog.width = 500;
	dialog.buttons = {
		'ok' : function(){
			dialog.close();
		}
	}
	dialog.display();
}
