function openSpellingBeeWindow() {

    var w = screen.width, h = screen.height;
    
    var popW = 775, popH = 480;
    
    var leftPos = (w-popW)/2, topPos = (h-popH)/2;
    
    var newWindow = window.open(
                                'http://www.portlandtribune.com/spelling_bee.html',
                                'spelling_bee',
                                'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ', location=no, toolbar=no, menubar=no, resizable=no, status=no'
                                );

}
