function splashName() {
    var season     = new Array();
    season[00]     = "winter";    season[01]     = "winter";    season[02]     = "spring";
    season[03]     = "spring";    season[04]     = "blossom";   season[05]     = "summer";
    season[06]     = "summer";    season[07]     = "summer";    season[08]     = "fall";
    season[09]     = "fall";      season[10]     = "fall";      season[11]     = "winter";
    var numpics    = 10;
    var now        = new Date();
    var t          = now.getSeconds();
    var month      = now.getMonth();
    var thisseason = season[month];
    var image      = "../SIMA/splash_" + thisseason + "_0";
    var s          = "" + Math.round(t * 100) / 100;
    image += s.charAt(s.length-1) + ".jpg";
    document.splashart.src = image;
    return;
}

function showInfo(url) {
    newWindow = window.open( url, 'Info', 'resizable=yes,scrollbars=yes,toolbar=yes');
    newWindow.focus();
}

function showCOLA(colaID) {
    var docID = new String();
    docID = colaID;
    var url = "https://www.ttbonline.gov/colasonline/viewColaDetails.do?action=publicDisplaySearchAdvanced&amp;ttbid=" + docID;
    COLAWindow = window.open( url, 'TTBCOLA', 'resizable=yes,scrollbars=yes,toolbar=yes,height=435,left=180,top=060');
    COLAWindow.focus();
}

function showPopUp(url) {
    popWindow = window.open( url, 'PopUp', 'resizable=yes,scrollbars=yes,toolbar=yes,height=435,width=496,left=180,top=090');
    popWindow.focus();
}

function showBlend(url) {
    popWindow = window.open( url, 'Blend', 'resizable=yes,scrollbars=yes,toolbar=yes,height=435,width=300,left=180,top=090');
    popWindow.focus();
}

function showNHSLCInventory(code) {
    var url = "http://nh.liquor.state.nh.us/public/default.asp?Category=inquiries&Service=prodfindpost&req=" + code;
    popWindow = window.open( url, 'NHSLC', 'resizable=yes,scrollbars=yes,toolbar=yes,height=435,width=400,left=180,top=060');
    popWindow.focus();
}

function showVendor(url) {
    window.open( url, 'VendorURL', 'toolbar=yes,location=yes,resizable=yes,scrollbars=yes' );
}

function showNHLiquor() {
    window.open( "http://www.nhliquor.com", 'NHLiquorURL', 'toolbar=yes,location=yes,resizable=yes,scrollbars=yes' );
}

function showStadnikURL(url) {
    window.open( url, 'StadnikURL', 'toolbar=yes,location=no,resizable=yes,scrollbars=yes' );
}




