				
				function save_edit_comment(id)
						{
							document.getElementById('new_comment'+id).value=document.getElementById('new_comment'+id).value;
							//alert(document.getElementById('new_comment'+id).value);
							document.form1.action='../save_edit_comment';
							document.form1.submit();
						}			
					function delete_comment(id)	
						{					
							document.getElementById('div_comment_'+id).style.display='none';	
							document.getElementById('comment_id').value=id;
							
							document.form1.action='../delete_comment';
							document.form1.submit();	
						}
						