function weisAutostop() {
	var detailer = document.getElementById('autostop_detailer');
	detailer.style.display = 'block';
	detailer.style.width = '' + Math.max(detailer.parentNode.parentNode.offsetWidth - 24, 300) + "px";
	detailer.style.top = 'inherit';
	detailer.style.opacity = '0.9';
	detailer.parentNode.style.visibility = 'hidden';
	detailer.style.visibility = 'visible';
	detailer.style.right = '1%';
	detailer.style.top = '' + detailer.parentNode.offsetTop + "px";
}

function verstoppAutostop(el, event) {
	var detailer = document.getElementById('autostop_detailer');
	detailer.parentNode.style.visibility = 'visible';
	detailer.style.display = 'none';
	event.stopPropagation();
}