
  var win = null;
  
  function getPaste( shape, keyword)
  {
    
     var hh, ww;
     closeWin();
     
     if( shape == '1'){
        
         hh = 550;
         ww = 190;
     }else{    
         hh = 250;
         ww = 540;
      
     }
     
     win = window.open("/embed/embedcode.asp?shape=" + shape + "&keyword="+keyword,"", "height=" + hh + ",width=" + ww + ",status=no,toolbar=no,menubar=no,location=no");
   
  }

  function closeWin()
  {
  
    if (win != null && win.open) win.close();
  }  
