﻿function openSample() {
    var winDef = 'status=no,resizable=no,scrollbars=yes,toolbar=no,location=no,fullscreen=no,titlebar=yes,height='.concat(415).concat(',').concat('width=').concat(680).concat(',');
    winDef = winDef.concat('top=').concat((screen.height - 415) / 2).concat(',');
    winDef = winDef.concat('left=').concat((screen.width - 680) / 2);
    newwin = open('Week-Ahead-sample.htm', 'WeekAheadSample', winDef);
    return false;
}
function openAboutUs() {
    var winDef = 'status=no,resizable=no,scrollbars=yes,toolbar=no,location=no,fullscreen=no,titlebar=yes,height='.concat(470).concat(',').concat('width=').concat(680).concat(',');
    winDef = winDef.concat('top=').concat((screen.height - 470) / 2).concat(',');
    winDef = winDef.concat('left=').concat((screen.width - 680) / 2);
    newwin = open('About-James-Mound-Popup.aspx', 'AboutJamesMound', winDef);
    return false;
}
