Index: /issm/trunk/src/m/classes/public/plot/plot_BC.m
===================================================================
--- /issm/trunk/src/m/classes/public/plot/plot_BC.m	(revision 3247)
+++ /issm/trunk/src/m/classes/public/plot/plot_BC.m	(revision 3247)
@@ -0,0 +1,19 @@
+function plot_BC(md,options,width,i,data);
+
+plot_pressureload(md,options,width,i,data)
+
+hold on
+
+h1=plot(md.x(find(md.spcvelocity(:,1))),md.y(find(md.spcvelocity(:,1))),'ro','MarkerSize',14,'MarkerFaceColor','r');
+h2=plot(md.x(find(md.spcvelocity(:,2))),md.y(find(md.spcvelocity(:,2))),'bo','MarkerSize',10,'MarkerFaceColor','b');
+h3=plot(md.x(find(md.spcvelocity(:,3))),md.y(find(md.spcvelocity(:,3))),'yo','MarkerSize',6 ,'MarkerFaceColor','y');
+
+[legend_h,object_h,plot_h,text_strings]=legend();
+text_strings{end+1}='vx boundary';
+text_strings{end+1}='vy dirichlet';
+if h3, text_strings{end+1}='vz dirichlet'; end
+plot_h(end+1)=h1;
+plot_h(end+1)=h2;
+if h3, plot_h=[plot_h h3];end
+
+legend(plot_h,text_strings)
Index: /issm/trunk/src/m/classes/public/plot/plot_manager.m
===================================================================
--- /issm/trunk/src/m/classes/public/plot/plot_manager.m	(revision 3246)
+++ /issm/trunk/src/m/classes/public/plot/plot_manager.m	(revision 3247)
@@ -20,4 +20,7 @@
 		case 'boundaries',
 			plot_boundaries(md,options,subplotwidth,i);
+			return;
+		case 'BC',
+			plot_BC(md,options,subplotwidth,i,data);
 			return;
 		case 'elementnumbering',
