Index: /issm/trunk-jpl/src/m/classes/mesh3dprisms.js
===================================================================
--- /issm/trunk-jpl/src/m/classes/mesh3dprisms.js	(revision 20843)
+++ /issm/trunk-jpl/src/m/classes/mesh3dprisms.js	(revision 20844)
@@ -5,5 +5,5 @@
 
 function mesh3dprisms() {
-		this.setdefaultparameters = function() { //{{{
+		this.setdefaultparameters = function() { // {{{)
 
 			//the connectivity is the averaged number of nodes linked to a
@@ -14,6 +14,5 @@
 			this.average_vertex_connectivity=25;
 		} // }}}
-
-		this.checkconsistency = function(md,solution,analyses) { // {{{
+		this.checkconsistency = function(md,solution,analyses) { //{{{[)
 
 			checkfield(md,'fieldname','mesh.x','NaN',1,'Inf',1,'size',[md.mesh.numberofvertices, 1]);
@@ -36,5 +35,5 @@
 			checkfield(md,'fieldname','mesh.average_vertex_connectivity','>=',24,'message','\'mesh.average_vertex_connectivity\' should be at least 24 in 3d');
 		} // }}}
-		this.disp = function() { // {{{
+		this.disp = function()  { // {{{
 			console.log(sprintf('   3D prism Mesh:')); 
 
@@ -78,7 +77,7 @@
 		} // }}}
 		this.marshall = function(md,prefix,fid) { // {{{
-			WriteData(fid,prefix,'enum',DomainTypeEnum(),'data',StringToEnum(['Domain' + this.domaintype()]),'format','Integer');
-			WriteData(fid,prefix,'enum',DomainDimensionEnum(),'data',this.dimension(),'format','Integer');
-			WriteData(fid,prefix,'enum',MeshElementtypeEnum(),'data',StringToEnum(this.elementtype()),'format','Integer');
+			WriteData(fid,prefix,'name','md.mesh.domain_type','data',StringToEnum('Domain' + this.domaintype()),'format','Integer');
+			WriteData(fid,prefix,'name','md.mesh.domain_dimension','data',this.dimension(),'format','Integer');
+			WriteData(fid,prefix,'name','md.mesh.elementtype','data',StringToEnum(this.elementtype()),'format','Integer');
 			WriteData(fid,prefix,'object',this,'class','mesh','fieldname','x','format','DoubleMat','mattype',1);
 			WriteData(fid,prefix,'object',this,'class','mesh','fieldname','y','format','DoubleMat','mattype',1);
@@ -111,11 +110,11 @@
             this.long=NaNFix(this.long,NaN);
         }//}}}
-		this.domaintype = function() { // {{{
+		this.domaintype = function() { // {{{)
 			return '3D';
 		} // }}}
-		this.dimension = function() { // {{{
+		this.dimension = function() { // {{{)
 			return 3;
 		} // }}}
-		this.elementtype = function() { // {{{
+		this.elementtype = function() { // {{{)
 			return 'Penta';
 		} // }}}
@@ -124,6 +123,5 @@
         } //}}}
 
-        //properties
-        //{{{
+        //properties (SetAccess=public) 
         this.x                           = NaN;
         this.y                           = NaN;
@@ -158,4 +156,3 @@
         this.extractedvertices           = NaN;
         this.extractedelements           = NaN;
-        //}}}
 }
