﻿function button1(whatpage) {
    window.parent.location.href = "CrosswindsMenuPages/Page1.pdf";
    // document.open("CrosswindsMenuPages/Page1.pdf");
}
function OnGoMenuFormLink(GoList) {
    var url = GoList.options[GoList.selectedIndex].value;
    var target = GoList.options[GoList.selectedIndex].className;
    GoList.selectedIndex = 0;
    GoList.blur();
    if (url) {
        NewWin = window.open(url, target);
        window['NewWin'].focus()
    }
}
