function showProgress() {
    var content = document.getElementById('content');
    content.innerHTML = '<p class="textblock">De opgevraagde pagina wordt geladen</p>';
    return true;
}

function open_popup(url, title, width, height) {
	if (!width) width = 400;
	if (!height) height = 400;
	var myWindow = window.open('',name,'status=no,toolbar=no,location=yes,menubar=no,width='+width+',height='+height+',resizable=yes,scrollbars=yes');
	myWindow.document.write('De opgevraagde pagina wordt geladen.');
	myWindow.document.close();
	myWindow.location = url;
	return false;
}
