//Netscape 4 style-sheet information erhalten



	function fixStyles() {

		var doc = document

		var win = window

		if (doc.fixCS.fixCSIn.inW != win.innerWidth || doc.fixCS.fixCSIn.inH != win.innerHeight) {

			doc.location = doc.location

		}

	}

	function fixInFrame(docwin) {

		var topmostWin = docwin.parent

		if (topmostWin == 'undefined') {

			return false

		}

		for (var i = 0; i < topmostWin.frames.length; i++) {

			if (docwin == topmostWin.frames[i]) {

				return true

			}

		}

		return false

	}

	function fixNSDocStyles() {

		var doc = document

		var win = window

		if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {

			if (typeof doc.fixCS == 'undefined') {

				doc.fixCS = new Object

				doc.fixCS.fixCSIn = new Object

			} else if (fixInFrame(win) == true) {

				fixStyles()

			}

			doc.fixCS.fixCSIn.inW = win.innerWidth				

			doc.fixCS.fixCSIn.inH = win.innerHeight

			window.onresize = fixStyles

		}

	}



