

				function FP_popUpMsg(msg) {//v1.0
					alert(msg);
				}
			
				function loadContent(url) { 
					var xmlRequest = null; 
					
					if(window.XMLHttpRequest)
						xmlRequest = new XMLHttpRequest(); 
					else if (window.ActiveXObject)  
						xmlRequest = new ActiveXObject("Microsoft.XMLHTTP"); 
					
					xmlRequest.onreadystatechange = function()
					{ 
						if(xmlRequest.readyState == 4)
						{
								document.getElementById('content').innerHTML = xmlRequest.responseText;
						} 
					}
					xmlRequest.open("GET", url, true); 
					xmlRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
					xmlRequest.send(null); 
				}
			
				function init() {
if (window.Event) {document.captureEvents(Event.MOUSEMOVE);}
document.onmousemove = haalMuisPositie; }

function haalMuisPositie(e) {
muisX = (window.Event) ? e.pageX : event.clientX;
muisY = (window.Event) ? e.pageY : event.clientY; }

function toonPlaatje(naam,beeldje) { 
laag = document.getElementById(naam);
laag.innerHTML = '<img src=' +beeldje+'>'; 
laag.style.visibility = "visible";
laag.style.top = muisY + "px";
laag.style.left = muisX + "px"; 
plaatsPlaatje() }

function verbergPlaatje(naam){ 
laag = document.getElementById(naam); 
laag.style.visibility = "hidden"; }
 
function plaatsPlaatje() { 
laag.style.top = muisY + "px"; 
laag.style.left = muisX + "px"; } 
		
function popup(mylink, windowname)
	{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
		 href=mylink;
	else
		 href=mylink.href;
	window.open(href, windowname, 'width=500,height=500,scrollbars=NO,resizable=yes');
	return false;
	}
