var timeout_id = null;
function addTimeout(newId) {
	timeout_id = newId;
}

function clearTimeouts() {
	clearTimeout(timeout_id);	
}
