/****************************
 * 
 * Basisklasse fuer Fensterinhalte
 *
 ****************************/

function eFrame(settings)
{
	this.settings = settings;
	
	this.frame_body = null;
	
}

eFrame.prototype.create = function()
{
	if(this.frame_body == null)
	{
		this.frame_body = document.createElement("div");
	}
	this.frame_body.id = "body_" + this.settings.name;
	this.frame_body.setAttribute("class", "popup_body");
	this.frame_body.className = "popup_body";
}

eFrame.prototype.setDialog = function(obj)
{
	this.frame_body = obj;
}