// JavaScript Document

BBI = {};

BBI.Core = 
{
	BBNC:
	{
		_version: 1.1,
		_updated: '04/17/2008 10:07:07 AM',

		isV5: !!window.Sys,
		isV4: !!(window.BBProcMsg && !window.Sys),
		isEditView: !!window.location.href.match('edit='),
		hasPRM: !this.isV5
	}
};

BBI.Client =
{

	fixMembership: function()
	{

		if (BBI.Core.BBNC.isEditView) {
			$('.JSblock').append('Custom Javascript: Custom Membership Form');
		}
		else {
		
// rewrite comment box
		$("label[id$=_lblTxtComments]").text("If you are signing up for a Joint Membership, please provide the other individual's name in this box:").css("white-space", "normal");
		
		
		}
	}
}

				
				
