function popUp(url, title) {
   popupWin = window.open(url, title, 'resizable,scrollbars,width=450,height=500,top=50,left=50')
}

function popUpExternal(url, title) {
   popupWin = window.open(url, title, 'resizable,scrollbars,width=800,height=550,top=50,left=50')
}

function popUpEcard(url, title) {
  width=770;
  height=500;
  left=(screen.availWidth/2-width/2);
  top=(screen.availHeight/2-height/2);
   popupWin = window.open(url, title, 'resizable=0,scrollbars=0,width='+width+',height='+height+',left='+left+',top='+top+'')
}



function popUpNewsLetter(url, title) {
   popupWin = window.open(url, title, 'resizable,scrollbars,width=585,height=500,top=100,left=100')
}

function popUpBioWeb(url, title) {
  $.ajax({
    url: url, 
    cache: false, 
    async: true,
    success: function(html){
      $("#detail").html(html);
      $("html").scrollTop(0);
      $("body").scrollTop(0);
      $("#detail").slideDown("slow");
    }
  
  
  })
    //$("#detail").show('blind');
    
   //popupWin = window.open(url, title, 'resizable,scrollbars,width=605,height=500,top=100,left=100')
}

function popUp2(url, title) {
   popupWin = window.open(url, title, 'resizable,scrollbars,width=300,height=200,top=50,left=50')
}
function popUpEmail(url, title) {
   popupWin = window.open(url, title, 'width=568,height=400,top=50,left=50, resizable=yes, scrollbars=no, menubar=no, toolbar=no, directories=no, favorites=no, location=no, status=yes')
}
function popUpInviteNP(url, title) {
   popupWin = window.open(url,title,'resizable,scrollbars,width=410,height=640,top=100,left=100')
}
function popUpShop(url, title) {
   popupWin = window.open(url,title,'resizable,scrollbars,width=640,height=640,top=100,left=100')
}

