//Popup
function WinOpen(src,width,height){
   if(! WinOpen.arguments[1]) width  = 635;
   if(! WinOpen.arguments[2]) height = 650;
   var wo = window.open(src,'_blank','toolbar=no,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
   wo.window.focus();
}
function WinClose(){
   self.window.close();
}

function ChgPWin(src){
   if(opener.closed == false){
      window.opener.location.href=src;
      window.opener.focus();
   }else{
      window.open(src,'_blank');
   }
}
