if (typeof (N52) == "undefined")
{ N52 = {}; } 

N52.XCache =
{    
 

SetKey: function() 
{

   var name = Xrm.Page.data.entity.attributes.get("north52_category").getValue() + '_' ;
    Xrm.Page.data.entity.attributes.get("north52_name").setValue(name );
},



Save: function(ExecutionObj)
{


try
 {

   var eventArgs = ExecutionObj.getEventArgs();

   if (eventArgs.getSaveMode() == 70)
   {
        eventArgs.preventDefault();
        return;
   }

     
  }
  catch(ex)
  {
    alert("North52 Formula Manager Exception: " + ex.message);
  }       


} //End functions   

}