1 function Dataface_Record(vals){
  2 	this.vals = vals;
  3 }
  4 new Dataface_Record({});
  5 Dataface_Record.prototype.getURL = function(arg){
  6 	return this.vals['__url__']+'&'+arg;
  7 }
  8 
  9 Dataface_Record.prototype.getTable = function(){
 10 	return this.vals['__id__'].substring(0, this.vals['__id__'].indexOf('?'));
 11 }
 12