var isNS4 = document.layers;var isMac = navigator.appVersion.lastIndexOf("Macintosh") != -1;// еееееее RESIZE FUNCTIES VOOR LAYERS IN NNvar myURL = location.href;var isNS4 = document.layers;if (isNS4) {	origWidth = innerWidth;	origHeight = innerHeight;}function reDo() {	if (innerWidth != origWidth || innerHeight != origHeight) {		window.location=myURL;	}}if (isNS4) onresize = reDo;// еееееее // еееееее INIT MOUSEMOVEfunction initMousemove() {	if (isNS4) { document.captureEvents(Event.MOUSEMOVE); }	document.onmousemove = processMouse;}	function processMouse(e) {	mouseX = (isNS4) ? e.pageX : (event.clientX + document.body.scrollLeft);	mouseY = (isNS4) ? e.pageY : (event.clientY + document.body.scrollTop);	mouseRelX = (isNS4) ? (mouseX - window.pageXOffset) : event.clientX;	mouseRelY = (isNS4) ? (mouseY - window.pageYOffset) : event.clientY;	windowWidth = (isNS4) ? window.innerWidth : document.body.clientWidth;	windowHeight = (isNS4) ? window.innerHeight : document.body.clientHeight;	windowScrollX = (isNS4) ? window.pageXOffset : document.body.scrollLeft;	windowScrollY = (isNS4) ? window.pageYOffset : document.body.scrollTop;	myMouseFunctions();}// еееееее // еееееее RANDOM FUNCTIEfunction randomInteger(startVal,endVal) {				// geeft willikeurig integer van startVal t/m endVal	var myInteger = Math.round(Math.random() * 1000);	myInteger -= (Math.floor(myInteger / (endVal - startVal + 1)) * (endVal - startVal + 1));	myInteger += startVal;	return myInteger;				}// еееееее 
