function Links() {
	
	this.type;
	
	this.value;
	
	this.setType = function(type){
		this.type = type;
	}

	this.getType = function(){
		return this.type;
	}
	
	this.setValue = function(value){
		this.value = value;
	}
	
	this.getValue = function(){
		return this.value;
	}
}
