var browserVer = parseInt(navigator.appVersion);
if(browserVer > 3){

function DynEl(window, id, body, width){

	this.window = window;
	this.id = id;
	this.body = body;

	}

var browserVer = parseInt(navigator.appVersion);

if((navigator.appName.indexOf("Netscape") != -1) && browserVer > 3){

DynEl.prototype.output = function(){

var d = this.window.document;

d.writeln('<DIV ID ="'+ this.id + '">');
d.writeln(this.body);
d.writeln("</DIV>");

this.layer = d[this.id];
}



}


if((navigator.appName.indexOf("Microsoft") != -1) && browserVer > 3){
var d = this.window.document;


DynEl.prototype.output = function(){


d.writeln('<DIV ID ="'+ this.id + '">');
d.writeln(this.body);
d.writeln("</DIV>");

this.element = d.all [this.id];
this.style = this.element.style;
}

}


}
