jQuery Popup w/ Returned Form Information

I have an HTML form with a PHP file to return information based on what the user selected in the form. I am trying to get the information returned from the PHP file to display in a jQuery popup but can’t quite get it to work. Here is my jQuery code:


<script type="text/javascript">
var $j = jQuery.noConflict();
	$j(function(){
	$j("#iphone").submit(function() {
		$('#popup_content').popup(
			{
				starttime : 0,
multipages_timer : false,
selfclose	 : 0,
popup_div	 : 'popup',
overlay_div	 : 'overlay',
close_id	 : 'baner_close',
overlay	 : true,
opacity_level : 0.7,
overlay_cc	 : false,
centered	 : true,
top	 : 130,
left	 : 130,
setcookie : false,
cookie_name	 : 'popup',
cookie_timeout : 0,
cookie_views : 0,
floating	 : true,
floating_reaction : 700,
floating_speed : 12,
fly_in	 : true,
fly_from : 'top',
fly_out	 : true,
fly_to : 'bottom',
popup_appear : 'show',
popup_appear_time : 0,
popup_disappear : 'hide',
popup_disappear_time: 0,
confirm_close	 : false,
confirm_close_text : 'Do you really want to close?'
			});
	});
});
</script>


    <div id="popup_content" style="display:none;">
		          <div style="float:right;padding:10px;">
			<a href="#" id="baner_close">Close</a>
		          </div>
		<div style="clear:both;"> </div>
     <?php include('/home/appleblu/public_html/forms/iphone.php'); ?>
    </div>

FYI the HTML form’s ID is iphone. Anyone see any problems? The form submits but the popup does not show, I’ve also tried the popup script elsewhere with no problems.

Thanks.
-Luke