// ÆË¾÷¶ç¿ì±â
function click_openWindow(url,fname,wid,hei,scrol) { //v2.0
  var theURL, winName, features;
  //theURL = url;
  theURL = "http://www.nike.co.kr/nikelegend/event/event.htm";
  winName = "pop";
  wid = "300";
  hei = "437";
  scrol = "no";

  features = "scrollbars="+scrol+",width="+wid+",height="+hei+",top=0,left=0";
  
  
  popup = window.open(theURL,winName,features);
  popup.focus();
}