<!--
// »õÃ¢ È­¸é °¡¿îµ¥·Î ¿­±â
function openCenter(page,name,options,addLeft,addTop) {
	options.match(/width=(\d+),height=(\d+)/);
	var intLeft = (screen.width/2 - RegExp.$1/2);   
	var intTop  = (screen.height/2 - RegExp.$2/2);
	return window.open(page,name,options+',top='+intTop+',left='+intLeft);
}
var	farwindow =	null;
// ¾ÆÀÌµð Ã£±â
function SearchIDWindow() {
	farwindow = window.openCenter('','','width=417,height=340,scrollbars=auto,resizable=no,left=0,top=0');
  if(farwindow != null) {
	if(farwindow.opener ==	null) {
	  farwindow.opener = self;
	}
	farwindow.location.href	= '/mem/search_id.html';
  }
}
// ºñ¹Ð¹øÈ£ Ã£±â
function SearchPassWindow()	{
  farwindow	= window.openCenter('','','width=417,height=340,scrollbars=auto,resizable=no,left=0,top=0');
  if (farwindow	!= null) {
	if (farwindow.opener ==	null) {
	  farwindow.opener = self;
	}
	farwindow.location.href	= '/mem/search_pw.html';
  }
}
//-->
