/**
 * opent document in een popup
 */
function venster(breedte,hoogte,url){
		if (window.open) {nwvenster=window.open(url,'gruber','height='+hoogte+',width='+breedte)}
		if (window.focus) {nwvenster.focus()}
		return false;
	}
/** voorbeeld
 
function vensterpix(hoogte,url){
		if (window.open) {nwvenster=window.open(url,'akribeia2','height='+hoogte+',width=324')}
		if (window.focus) {nwvenster.focus()}
		return false;
	}
*/
