function Find_Promotion(page){              
   $.scrollTo( 0, 300, {queue:true} );
   $.post("ajax_promotions.php?page="+page, 
            $('#Place_Form').serialize(),
            function(response){
                    var res = eval('(' + response + ')');
                    $("#ControlDiv").slideUp(1000, function () {
                      $("#ControlDiv").html(res.msg);
                      $("#ControlDiv").slideDown(1000);
                      
                    });                   
                    
                }          
                );
}function Show_Promotion(img, text){	var text = '<img src="'+img+'" >'+text;	$('#ShowPromotion').show(800);	$('#addInfo').html(text);}
