// This file is included only if the member is not logged in.  We want to load up the promotion list,
// but we don't want to initialize any of the elements.  This way, the page is not editable.
Event.observe(window, 'load', init_promotions);

function init_promotions ()
{
	response = new Ajax.Updater('promotion_list', '/load.php', { evalJSON: true, sanitizeJSON: true, parameters: 
 { method: 'load_promotion_list', promoter_id: id_to_edit } } );
}  // end function init_promotions.


	
