Index: /issm/trunk/src/m/model/plot/northarrow.m
===================================================================
--- /issm/trunk/src/m/model/plot/northarrow.m	(revision 9287)
+++ /issm/trunk/src/m/model/plot/northarrow.m	(revision 9288)
@@ -13,5 +13,7 @@
 elseif length(structure)==4
 	structure(5)=structure(3)/10; %default width =length/10
-elseif length(structure)>5
+elseif length(structure)==5
+	structure(6)=16; %default fontsize
+elseif length(structure)>6
 	error('plotmodel error message: to many input arguments for northarrow: [x0 y0 length [ratio [width]]]');
 end
@@ -23,4 +25,5 @@
 ratio=structure(4);
 width=structure(5);
+fontsize=structure(6);
 
 %Figure out angle to point towards north
@@ -71,3 +74,3 @@
 xN=max([A(1) D(1) E(1) F(1) G(1)])+ratio/3*lengtharrow;
 yN=mean([A(2) F(2) H(2)]);
-text(xN,yN,'North','FontSize',16,'FontWeight','b');
+text(xN,yN,'North','FontSize',fontsize,'FontWeight','b');
