function review_formPost(postUrl){postData=new Object();postData.postType='ajax';postData.submit='submit';postData.item_type=jQuery('#item_type').attr('value');postData.item_id=jQuery('#item_id').attr('value');postData.reviewer_name=jQuery('#reviewer_name').attr('value');postData.review_title=jQuery('#review_title').attr('value');postData.reviewer_email=jQuery('#reviewer_email').attr('value');postData.review=jQuery('#review').attr('value');postData.reviewer_location=jQuery('#reviewer_location').attr('value');postData.captchatext=jQuery('#captchatext').attr('value');postData.rating=jQuery('#rating').attr('value');jQuery("#TB_ajaxContent").html("<div id='TB_load'><img src='"+imgLoader.src+"' /></div>");jQuery("#TB_load").show();jQuery.post(postUrl,postData,function(html){jQuery("#TB_ajaxContent").html(html);},'html');}
