// JavaScript Document

var selectbox = function(input, value, option) {
	
	this.input = input;
	this.value = value;
	this.option = option;
	this.action = '';
	
	this.box = function(method) {
		this.action = method;
	}
	
	this.choice = function(label, value) {
		document.getElementById(this.value).innerHTML = label;
		document.getElementById(this.input).value = value;
		
		this.action = 'hide';
	}
	
	this.hyperlink = function(label, url) {
		location.href = url;
	}
	
	this.show = function() {
		
		if(this.action == 'show') {
			document.getElementById(this.option).style.display = 'block';
			this.action = 'hide';
		}
		else if(this.action == 'hide') {
			document.getElementById(this.option).style.display = 'none';			
		}
	}
	
}