
function _CELM()
{
	this.lastOpened = '';
	return this;
}
_CELM.prototype.IsDisplaySupported = function()
{
	if( window.opera && !document.childNodes ) return false;
	if( document.getElementById || document.all ) return true;
	return false;
}
_CELM.prototype.getQueryVar = function(varName)
{
	var q = window.location.search.substring(1);
	var v = q.split('&');
	for( var i=0; i < v.length; i++ )
	{
		var p = v[i].split('=');
		if( p[0] == varName ) return p[1];
	}
	return null;
}
_CELM.prototype.getObj = function(obj)
{
	return ( document.getElementById ? document.getElementById(obj) : ( document.all ? document.all[obj] : null ) );
}
_CELM.prototype.displayObj = function(obj, status)
{
	var x = this.getObj(obj);
	if( x && x.style ) x.style.display = status;
}
_CELM.prototype.display = function(elm_id, isLink)
{
	if( this.IsDisplaySupported() )
	{
		if( !isLink )
		{
			if( this.lastOpened != '' )
			{
				this.displayObj(this.lastOpened, 'none');
			}
			if( this.lastOpened != elm_id )
			{
				this.displayObj(elm_id, '');
				this.lastOpened = elm_id;
			}
			else
			{
				this.lastOpened = '';
			}
		}
		return false;
	}
	return true;
}

var CELM = new _CELM();

if( !CELM.IsDisplaySupported() )
{
	var u_elm = window.location.href;
	u_elm += ( u_elm.indexOf('?') > 0 ? '&' : '?' ) + 'dhtml=no';
	window.location.replace(u_elm);
}
