﻿
function printXmasList(){
}

function toggleOtherLists(){
    var list = document.getElementById("groupList");
    list.style.display = (list.style.display=="none")? "block":"none";
    var plusMinus = document.getElementById("plusMinus");
    plusMinus.innerHTML = (list.style.display=="none")? "+":"&#150;";
    var ads = document.getElementById("ads");
    ads.style.display = (list.style.display=="none")? "block":"none";
}

var newWin = null;
function openWindow(page,width,height) {
    var win_toolbar = "toolbar=" + "no";
    var win_width = "width=" + width;
    var win_height = "height=" + height;
    var win_left = "left=" + (screen.width - width) / 2;
    var win_top = "top=" + (screen.height - height) / 2;
    var win_status = "status=" + "no";
    var win_location = "location=" + "no";
    var win_menubar = "menubar=" + "no";
    var win_scrollbars = "scrollbars=" + "yes";
    var win_resizable = "resizable=" + "no";
    var win_parameters = win_toolbar + "," + win_width + "," + win_height + "," + win_left + "," + win_top + "," + win_status + "," + win_location + "," + win_menubar + "," + win_scrollbars + "," + win_resizable;
    newWin = window.open(page,'ThisPage', win_parameters);
    if (!newWin.closed){newWin.focus();}
}

