
<!--
function popupWindow(URL,WIDTH,HEIGHT) {
       window.open(URL, 'popup','width=' + WIDTH + ',height=' + HEIGHT );
}


function resizeOuterTo(w,h) {
 if (parseInt(navigator.appVersion)>3) {
   if (navigator.appName=="Netscape") {
    top.outerWidth=w;
    top.outerHeight=h;
   }
   else top.resizeTo(w,h);
 }
}



// -->
