function openWin(url,w,h,scrolling) { popupwin = window.open(url,"popupwin","scrollbars="+scrolling+",resizable=yes,status=yes,menubar=no,locationbar=no,height="+h+",width="+w); window.popupwin.focus(); } function openGlossary(url,w,h,scrolling) { popupwin = window.open(url, "popupwin1", "scrollbars="+scrolling+",resizable=no,status=no,menubar=no,locationbar=no,height="+h+",width="+w); window.popupwin.focus(); } function openGlossaryTop(url,w,h,scrolling,top) { popupwin = window.open(url, "popupwin1", "scrollbars="+scrolling+",resizable=no,status=no,menubar=no,locationbar=no,height="+h+",width="+w+",top="+top); window.popupwin.focus(); } function openWin2(url,name,width,height,status) { popupwin = window.open(url,name,"scrollbars=yes,resizable=no,menubar=no,locationbar=no,status="+status+",height="+height+",width="+width); } function swapImg(imageName,fileName) { if (ie || n || ns7) { document.images[imageName].src = fileName } } function displayWindow(url, width, height) { dispWindow = window.open(url,"dispWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' ); window.dispWindow.focus(); }