function rapportpopup(url) {
	var wid = 600;
	var hei = 500;
	var littlewin = null;
	Left= (screen.width) ? (screen.width-wid) /2:0;
	Top= (screen.height) ? (screen.height-hei) /2:0;
	sett='width='+wid+',height='+hei+',top='+Top+',left='+Left+',scrollbars=yes';

	littlewin = window.open(url,'rapportpopup',sett)
}

function mailpopup(url) {
	var wid = 330;
	var hei = 300;
	var littlewin = null;
	Left= (screen.width) ? (screen.width-wid) /2:0;
	Top= (screen.height) ? (screen.height-hei) /2:0;
	sett='width='+wid+',height='+hei+',top='+Top+',left='+Left+',scrollbars=no';

	littlewin = window.open(url,'mailpopup',sett)
}