function openLocationPopUp(intMessageId) {
	strAction = "index.php?page=locationPopup";
	strAction += "&intMessageId="+intMessageId;
	locationPopUp = window.open(strAction, 'locationPopUp','width=200, height=200, toolbar = 0,scrolling = yes,scrollbars = yes,directories = no,menubar = no,location = no,resizable = yes,personalbar = no,status = yes');
	locationPopUp.focus();
}

function setCoords(intMappointX, intMappointY) {

	// cursor verplaatsen naar 
	cursorLayer.style.left = document.all.mapLayer.offsetLeft + intMappointX - 30; // - X-correctie voor afbeelding
	cursorLayer.style.top = document.all.mapLayer.offsetTop + intMappointY - 60; // - Y-correctie voor afbeelding

	// ev. nog verborgen cursor weergeven 
	cursorLayer.style.visibility = 'visible';

	return;
}

function setCoordsSmall(intMappointX, intMappointY) {

	// cursor verplaatsen naar 
	cursorLayerSmall.style.left = document.all.mapLayerSmall.offsetLeft + intMappointXSmall - 30; // - X-correctie voor afbeelding
	cursorLayerSmall.style.top = document.all.mapLayerSmall.offsetTop + intMappointYSmall - 60; // - Y-correctie voor afbeelding

	// ev. nog verborgen cursor weergeven 
	cursorLayer.style.visibility = 'visible';

	return;
}
