
<!--// hide from JavaScript-challenged browsers

function openWindow(url,winName,features,width,height) {
  scrollyes = features.indexOf("SCROLLBARS")
  os = navigator.platform;
        if (navigator.appName == "Netscape") {
				scrollvar=-4;
   				width=(width+16+scrollvar);height=(height-12);				
				
        } else if (navigator.appName == "Microsoft Internet Explorer" && os == "MacPPC") {
				scrollvar=15;
				width=(width+2+scrollvar);height=(height-10);
        } else {
				scrollvar=13;
                width=(width+scrollvar);height=height;
				
        }
    popupWin =  window.open(url,winName,features + "width=" + width + ",height=" + height );
    //return false;
}

<!-- same as above - alias name for pages with harmony popup -->
function openWin(url,winName,features,width,height) {
  scrollyes = features.indexOf("SCROLLBARS")
  os = navigator.platform;
        if (navigator.appName == "Netscape") {
				scrollvar=-4;
   				width=(width+16+scrollvar);height=(height-12);				
				
        } else if (navigator.appName == "Microsoft Internet Explorer" && os == "MacPPC") {
				scrollvar=15;
				width=(width+2+scrollvar);height=(height-10);
        } else {
				scrollvar=13;
                width=(width+scrollvar);height=height;
				
        }
    popupWin =  window.open(url,winName,features + "width=" + width + ",height=" + height );
    //return false;
}

// done hiding -->

 