function openMessagesLinksDetail(id) {
    var w = screen.width;
    var h = screen.height;
    var top = (h/2) - 200;
    var left = (w/2) - 300;
    window.open('index.php?mod=messages_links_detail&id=' + id, 'messagesLinksDetail', 'width=600,height=400, directories=no, statusbar=no, scrollable=yes, scrollbars=yes, addressbar=no, left=' + left + ', top=' + top);
}

function changeConcernMessages() {
	var key = document.forms['search'].concerns_combo.value;
	top.location.href = 'index.php?mod=mainpage&archive=1&fv=' + key;
}
