<!--

	function wiels_email()
	{
		var string1 = "wiel";
		var string2 = "wi";
		var string3 = "els.";
		var string4 = "com";
		var string5 = string1 + "@" + string2 + string3 + string4;
		document.write('<a href=' + 'mai' + 'lto:' + string5 + ' style="color:#0066ff">' + string5 + '</a>');
	}

	function openpopup(popurl, w, h, sizable) {
		str = 'width='+(w+20)+',height='+(h+30);
		if ( sizable != true ) {
			str = str + ',scrollbars=no,resizable=no,status=no';
		} else {
			str = str + ',scrollbars=yes,resizable=yes,status=yes';
		}
		window.open(popurl,'',str);
	}

	function setHeight(){
		newheight = document.body.clientHeight+document.body.scrollTop;
		// alert ("setheight: "+newheight);
		// newheight = getWindowHeight();
		if (newheight>0){
			// content.style.height = newheight;
			note.style.top = newheight-20;
			//content.style.height = "100%";
		}
	}



	function getWindowHeight() {
		var windowHeight = 0;
		if (typeof(window.innerHeight) == 'number') {
			windowHeight = window.innerHeight;
		}
		else {
			if (document.documentElement && document.documentElement.clientHeight) {
				windowHeight = document.documentElement.clientHeight;
			}
			else {
				if (document.body && document.body.clientHeight) {
					windowHeight = document.body.clientHeight;
				}
			}
		}
		return windowHeight;
	}

-->
