// popup functionaliteit

var k = 0;

function printPos(id,left)
{
		var left = left+"px";
		document.getElementById(id).style.left 	= left;
}

function pop(id)
{
		document.getElementById(id).style.visibility = 'visible';
		document.getElementById(id).style.display = 'block';
}

function popOutActive(id)
{
		//window.alert(id);
		document.getElementById(id).style.visibility = 'hidden';
		document.getElementById(id).style.display = 'none';
}

function popOut(id) {
	var divid = id;
	k = setTimeout(function() { popOutActive(divid); }, 150);
}

function timeruit() {
	clearTimeout(k);
}


