/*	lib:			js-dfc-static		description:	static dom element	created:		Mar. 14, 2003		contributed:	Wolfgang Schramm	methods:		new				create*/DFCStatic = function(cssStatic) {		DFCObject.call(this);		this._cssStatic	= cssStatic;};DFCStatic.prototype = new DFCObject();DFCStatic.prototype.create = function(hWin, opt_domParent) {	// hWin			window object where the button will be created	// opt_domParent	DOM parent element for the button		this._hWin		= hWin;	this._hDoc		= hWin.document;	this._domParent	= opt_domParent || hWin.document.body;		var domStatic;		domStatic = this._hDoc.createElement('div');	domStatic.className = this._cssStatic;		this._domParent.appendChild(domStatic);};		