/**
 * Modal box handling on the client
 */


window.setInterval(function() {
	if (String(location).match(/#topmodal:(.*)/)) {
		new topmodalbox(RegExp.$1);
		location.hash = '';
	}
}, 100);
