
function popGlossary(url,w,h){



if (typeof w == "undefined")w=500;
if (typeof h == "undefined")h=400;

neww= window.open(url,'Glossary',' height='+h+',width='+w+',scrollbars=1,location=no,menubar=no,resizable=yes,status=no,screenX=0,screenY=0');

neww.focus();


}


function popImage(url,w,h){

if (typeof w == "undefined")w=500;
if (typeof h == "undefined")h=400;

neww= window.open(url,'popImage','height='+h+',width='+w+',scrollbars=1,location=no,menubar=no,resizable=yes,status=no,screenX=0,screenY=0');
neww.focus();


}

