function sendMailNNytt(to) {
	var w = 500, h = 350, x, y, ieX, ieY;
    x = window.outerWidth / 2 - w / 2;
    y = window.outerHeight / 2 - h / 2;
    ieX = screen.width / 2 - w / 2;
    ieY = screen.height / 2 - h / 2;
    window.open("sendMailNNytt.php?sendTo=" + to, "_sendMailInfo", "screenX=" + x + ",screenY=" + y + ",width=" + w + ",height=" + h + ",left=" + ieX + ",top=" + ieY + ",menubar=no,location=no,statusbar=no,resizeble=no,personalbar=no,toolbar=no,directories=no");
}