<!--

function newWindow(strPage, strName, w, h, strToolbar)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2 - 20;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scroll=no,scrollbars=no,resizable=no,toolbar=' + strToolbar + ',menubar=' + strToolbar;
	win = window.open(strPage, strName, winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	
	return false;
}



//IMG-Tag fuer Resthoehe
function imgResthoeheNeu() {

	var browser_name	= navigator.appName;
	var browser_version	= parseFloat(navigator.appVersion);

	// First check for browser
	if (browser_name == "Netscape" && window.innerHeight > 600) {
		document.getElementById("resizeable").style.height = (window.innerHeight-600);
	}
	else {
		document.getElementById("resizeable").style.height = '100%';
	}


}

// -->

