
function open_modal(id, content_id, content) {
	$('#'+id).modal({
		overlayCss: {
			cursor: 'normal'			
		},
		overlayClose:true
	});
	
	if (content_id != '') {
		$('#'+content_id).html('<img src="https://images.heartbooker.com/images/layout/3.5.1/'+content+'" alt="" />');
	};
	
}

function close_modal() {
	$.modal.close();
}
