﻿//Opens a window centered in the screen with the project page
function openProjectWindow(pageId, filePath) {
    var specs = "channelmode=no, directories=no, fullscreen=no, location=no, menubar=no, resizable=no, scrollbars=no, status=no, titlebar=yes, toolbar=no";
    var w = 650, h = 500;
    var l = Math.round((screen.availWidth - w) / 2), t = Math.round((screen.availHeight - h) / 2);

    window.open("project.asp?pageId=" + pageId + "&filePath=" + filePath, "_blank", specs + ",width=" + w + ",height=" + h + ",left=" + l + ",top=" + t, true);
}