function BelMijNu(adres){
	window.open(adres,"statement","toolbar=no,scrollbars=no,location=no,resizable=no,width=300,height=150");
}

function switchRow(box) {
	if (document.all) {
		var row = document.all[box]
	}
	else {
		if (document.getElementById) {
			var row = document.getElementById(box)
		}
	}
	if (row) {
		if (row.style.display=='none') {
			row.style.display='';
		} else {
			row.style.display='none';
		}
	}
}
function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresize'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}