//<!--// Simple window opening and closing routinesfunction win1(){       newWin = window.open("../glossary/glossary.html", "glossary",                        "toolbar=no,resizable=no,scrollbars=auto,width=420,height=475");						newWin.focus(); }  function win2(){       newWin = window.open("../earn/earn_resume.html", "resumesample",                        "toolbar=no,resizable=no,scrollbars=yes,width=590,height=750");						newWin.focus(); }  function win3(){       newWin = window.open("../earn/earn_paycheck.html", "anatomyofapaycheck",                        "toolbar=no,resizable=no,scrollbars=yes,width=650,height=800");						newWin.focus(); }  function win4(){       newWin = window.open("../invest/invest_stocktable.html", "stocktable",                        "toolbar=no,resizable=no,scrollbars=yes,width=650,height=665");						newWin.focus(); } function openGlossaryTerm(letter) {  if (letter != null) {    newWin = window.open("../glossary/glossary_" + letter + ".html", "glossary","toolbar=no,resizable=no,scrollbars=auto,width=400,height=475");    newWin.focus();  }} function closewin() { 	parent.window.close();} //-->