	
	function salesPromotionsAction(){
		$('salesPromotionsSubmit').disabled = true;
		new Ajax.Updater('salesPromotionsContainer', '/dynamic/salesPromotions.html', 
		{asynchronous:true, evalScripts:true, 
		onComplete:function(request){
			Element.hide('indicator');
			$('salesPromotionsSubmit').disabled = false;
		}, 
		onLoading:function(request){Element.show('indicator');} , 
		parameters:'email='+$('salesPromotionsEmail').value});
	}
