function popup_window(name, url,top, width, height,status,scroll,mnbar)
{
	var winl = screen.width - width;	//¿À¸¥ÂÊ	
  /*toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no'; */
  if(!status) status='no';
if(!scroll) scroll='no';
if(!mnbar) mnbar='no';
  window.open(url, name, 'left='+winl+',top='+top+',width='+width+',height='+height+',history=yes,resizable=no,status='+status+',scrollbars='+scroll+',menubar='+mnbar); 
}