function widePop(wide) {
        wideWindow = window.open(wide,'wideWin','toolbar=yes,scrollbars=no,resizable=no,width=400,height=350')
        wideWindow.focus()
        }

function tallPop(tall) {
       tallWindow = window.open(tall,'tallWin','toolbar=yes,scrollbars=no,resizable=no,width=350,height=400')
       tallWindow.focus()
       }

