
// Tab Asset Section Obj
function TabAssetSection() {
	this.radios = new Array();
	this.button = null;
}
TabAssetSection.prototype.setBtn = function (btn) {
	this.button = document.getElementById(btn);
}
TabAssetSection.prototype.addRadio = function (obj) {
	this.radios[obj.id] = obj;
}
TabAssetSection.prototype.changeBtnURL = function(radio) {
	this.button.href = this.radios[radio].url;
	this.button.target = "_blank";
}

// Tab Radio Obj
function TabRadio(id,url,click) {
	this.id = id;
	this.url = url;
}