<!--
function popup(linkObj,w_w,w_h) {
    if(screen.width){
        wpos_x = (screen.width-w_w)/2;
        if (wpos_x < 0){ wpos_x = 0;}
        wpos_y = (screen.height-w_h)/2;
        if (wpos_y < 0){ wpos_y = 0;}
    }else{
        wpos_x = 250;
        wpos_y = 250;
    }

  window.open(linkObj, '_blank','width='+w_w+',height='+w_h+
    'location=1,toolbar=0,menubar=0,status=0,left='+wpos_x+',top='+wpos_y+'');
  return false
}
//-->