
jQuery(function() {	    
        jQuery("#comm_form").validate({
			submitHandler: function(form) {				
                jQuery(form).ajaxSubmit({					
					success: function(data) {
                    if (data == "FAIL")
                    {                        
                        $("#not_valid_content").show();
                        return;
                    }
                    //alert(data);
                    location.href = data;                                  
                    }
				});												            
			}
		});      
                       
	});

function show_form(parent_comm_id)
{

     
     
    $("#parent_comm_id").attr("value", parent_comm_id);
    $("#comm_form_div").show();
    jQuery("#comm_form_div").draggable();    
    	                      	
}
