// JavaScript Document

function DIV( divID ){
	this.prototype.divID = divID;
	
	if( typeof DIV._initialized == 'undefined'){
		DIV.prototype.hideMe = function(){
			document.getElementById( this.divID ).style.visibility = 'hidden';
		};
		DIV.prototype.showMe = function(){
			document.getElementById( this.divID ).style.visibility = 'visible';
		};
		DIV.prototype.openMe = function(){
			document.getElementById( this.divID ).style.display = 'block';
		};
		DIV.prototype.closeMe = function(){
			document.getElementById( this.divID ).style.display = 'none';
		};
	DIV._initialized = true;
	}
}

DIV.hide = function( divID ){
	document.getElementById( divID ).style.visibility = 'hidden';
}
DIV.show = function( divID ){
	document.getElementById( divID ).style.visibility = 'visible';
}
DIV.open = function( divID ){
	document.getElementById( divID ).style.display = 'block';
}
DIV.close = function( divID ){
	document.getElementById( divID ).style.display = 'none';
}

