// ÆË¾÷ ½ºÅ©¸³Æ®
function popUp(width,height,URL,scroll)
{
	var path = URL;
	var popup = null;
	var w = width;
	var h = height;
	var s = scroll;
	if(scroll == null)
		s = 'no';
	popup = window.open( path , w + h , 'width=' + w + ',height=' + h +',scrollbars=' + s + ',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no' );
 	popup.moveTo((screen.availWidth-w)/2,(screen.availHeight-h)/2) // Ã¢À§Ä¡ Á¶Àý
 	popup.focus();
}

// ÀÌ¸ÞÀÏ ¹ß¼Û ÆË¾÷ ½ºÅ©¸³Æ®
function goEmailContnets(manageCode, seqNo)
{ 
	popUp(550,250,'/include/email_write.jsp?manage_code='+manageCode+'&seqNo='+seqNo,scroll)
}
