
function ShowImportantNotices()
{
    var url = '/FundCentre/ImportantNotices.aspx';
    if (window.showModalDialog) {
        window.open(url, 'Glossary', 'width=700px,height=600px,scrollbars=yes,status=no,help=no,resizable=no,center=yes');
    }
    else {
        window.open(url, 'Glossary', 'width=700px,height=600px,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
    }
}

