function contentResizer () {
	/* By CaRu - carsten.ruppert@web.de */
	
	var rc = this;
	this.cc = document.getElementById('addressbox');

	this.oeh = 652;
	this.h = 0;
	
	this.maxh = 0;
	this.minh = 110;
	
	this.resize = function () {
		if ( document.documentElement.clientHeight ) {
			rc.h = document.documentElement.clientHeight -10; //IE...
			}
		else {
			rc.h = window.innerHeight - 2; // -2 wegen rahmen...			
			}
		
		if ( !rc.maxh == 0 && rc.h > rc.maxh ) {
			rc.cc.style.height = rc.maxh - rc.oeh + 'px';
			}
		else if ( !rc.minh == 0 && (rc.h - rc.oeh) < rc.minh ) {
			rc.cc.style.height = rc.minh + 'px';
			}
		else {
			rc.cc.style.height = rc.h - rc.oeh + 'px';
			}
		}
	
	if ( this.cc ) {
		void this.resize();
		if( window.attachEvent ) {
			window.attachEvent('onresize',this.resize);
			}
		else {
			window.addEventListener('resize',this.resize,false);
			}
		}	
	}