/**
  *
  *	An object called Foto
  *
  */
function Foto(){
/**
  *
  * Local variables
  *
  */
  this.id = 0;
  this.name = "";
  this.image = "";
  this.date = "";
  this.width = 0;
  this.height = 0;
  this.comment = "";
  
  /**
    *
	*	setters
	*
	*/
  this.setId = function(id){	  this.id = id;  }
  this.setName = function(name){	  this.name = name;  }
  this.setImage = function(image){	  this.image = image;  }
  this.setDate = function(date){	  this.date = date;  }
  this.setWidth = function(width){	this.width = width;	}
  this.setHeight = function(height){	this.height = height;	}
  this.setComment = function(comment){	  this.comment = comment;  }
  
  /**
    *
	*	getters
	*
	*/
  this.getId = function(){	  return this.id;  }
  this.getName = function(){	  return this.name;  }
  this.getImage = function(){	  return this.image;  }
  this.getDate = function(){	  return this.date;  }
  this.getWidth = function(){	return this.width;	}
  this.getHeight = function(){	return this.height;	}
  this.getComment = function(){	  return this.comment;  }  
}
