function editComment(id) {
	
	$('#comment'+id).css('display','none');
	value = $('#comment'+id).html();
	while(value.indexOf("<br>") != -1) {
		value = value.replace("<br>","\n");     
	}  
	$('#editComment'+id+' textarea').val(value.replace(/<a href="http:\/\/www\.crewplanet\.eu\/(\d{2,5})" target="_blank">(\d{2,5})<\/a>/ig, "id:$1"));     
	$('#editComment'+id).css('display','block');  
}


function saveComment(id, value) {
	  
	while(value.indexOf("\n") != -1) {
		value = value.replace("\n","<br>");  
	}  
	$('#comment'+id).html(value.replace(/id[:-]\s?(\d{2,5})/ig, "<a href=\"http://www.crewplanet.eu/$1\" target=\"_blank\">$1</a>"));   
	$('#editComment'+id).css('display','none');
	$('#comment'+id).css('display','inline-block');    
	jQuery.get("/in_site/modules/output/shipowner-vacancies/make_comment.php?vac="+id+"&c="+value); 
	
}
