// takes params for url, name of window, width and height

function glossary (word) {
   window.open('../glossary.html#'+word, 'glossary', "width=450,height=200,screenX=400,screenY=100,resizable=yes,status=no,toolbar=no,location=no,scrollbars=yes");
}

function openWin (url,name,w,h) {
        var given = "toolbar=no,location=no,directories=no,scrollbars=yes,status=no,menubar=no,resizable=yes,";
        var attr  = given + "height=" + h + ",width=" + w;
        // alert(attr);
        window.open(url,name,attr);
}
