/*----------------------------------------------------------------------------
»õÃ¢À» È­¸é °¡¿îµ¥·Î ¶ç¿ì´Â ÇÔ¼ö
----------------------------------------------------------------------------*/
function newwin(w_url,w_title,w_width,w_height,w_resizable,w_scrollbars)
{
	var option = "alwaysRaised,toolbar=0,status=0,menubar=0";
	
	var w_left = (screen.width)?(screen.width-w_width)/2:100;
	var w_top = (screen.height)?(screen.height-w_height)/2:100;
	
	//width ¿Í height °¡ ÀÖÀ»¶§¸¸ È­¸éÀÇ °¡¿îµ¥¿¡ Ç¥½ÃÇÑ´Ù
	if (w_width) option = option + ",width=" + w_width + ",left=" + w_left;
	if (w_height) option = option + ",height=" + w_height + ",top=" + w_top;
	//Ã¢Å©±â Á¶Àý°¡´É°ú ½ºÅ©·Ñ¹Ù Ç¥½Ã´Â ±âº»ÀûÀ¸·Î º¸ÀÌÁö ¾ÊÀ¸¸ç, ÁöÁ¤ÇÒ¶§¸¸ º¸ÀÎ´Ù
	if (w_resizable == true) option = option + ",resizable=1";
	if (w_scrollbars == true) option = option + ",scrollbars=1";

	var new_instance = window.open(w_url,w_title,option,"");
	new_instance.focus();
//	window.open(w_url,w_title,option,"");
}
/*----------------------------------------------------------------------------
¸ð´Þ´ÙÀÌ¾ó·Î±×Ã¢À» ¶ç¿ì´Â ÇÔ¼ö
----------------------------------------------------------------------------*/
function modalwin(w_url,w_title,w_width,w_height,w_resizable,w_scrollbars)
{	
	var option = "status:no;help:no;";

	var w_left = (screen.width)?(screen.width-w_width)/2:100;
	var w_top = (screen.height)?((screen.height-w_height)/2)-100:100;
	
	//width ¿Í height °¡ ÀÖÀ»¶§¸¸ È­¸éÀÇ °¡¿îµ¥¿¡ Ç¥½ÃÇÑ´Ù
	if (w_width) option = option + "dialogWidth:" + w_width + "px;";
	if (w_height) option = option + "dialogHeight:" + w_height + "px;";
	//Ã¢Å©±â Á¶Àý°¡´É°ú ½ºÅ©·Ñ¹Ù Ç¥½Ã´Â ±âº»ÀûÀ¸·Î º¸ÀÌÁö ¾ÊÀ¸¸ç, ÁöÁ¤ÇÒ¶§¸¸ º¸ÀÎ´Ù
	if (w_resizable == true) option = option + "resizable:yes;";
	//if (w_scrollbars == true) option = option + "scrollbars:yes;";
	//else option = option + "scrollbars:no;";

	var new_instance = showModalDialog(w_url,"",option);
	new_instance.focus();
//	window.open(w_url,w_title,option,"");
}