// docuMedia Browser work-around script//// See accompanying description text////  Permission must be obtained before using any of the functions or algorithms contained herein //  via e-mail from web-develop@documedia.de////  copyright (c) 2000-2001 docuMedia Johannes Bohnacker, http://www.documedia.de//	dMNVisiWidth v 1.1function dMNVisiWidth(sbFreeHeight,otherElementsWidth,minReturnWidth) {	if (!minReturnWidth) minReturnWidth = 1;	if ((navigator.appName.indexOf('Netscape') != -1)&&(parseInt(navigator.appVersion) == 4))		{		if (window.innerHeight>=sbFreeHeight) return (window.innerWidth-otherElementsWidth);		else return minReturnWidth;		}	else return minReturnWidth;	}
