DROPDOWN = {
	closedelay : 250,
	closetimer : null,
	ACTIVE_A : false,
	toggle : function(A){
		if(this.ACTIVE_A != A) this.hide();
		this.open(A);
		this.ACTIVE_A = A;
	},
	open : function(A){
		document.getElementById(A).style.display = 'block';
	},
	close : function(){
		this.closetimer = window.setTimeout("DROPDOWN.hide()", this.closedelay);
	},
	stopclose : function(){
		if(this.closetimer){
			window.clearTimeout(this.closetimer);
			this.closetimer = null;
		}
	},
	hide : function(){
		if(this.ACTIVE_A) document.getElementById(this.ACTIVE_A).style.display = 'none';
	}
}

function href(A){
	top.location=A;
}

var now=new Date();
