

// Å©±â Á¶ÀýµÇ´Â ÆË¾÷ À©µµ¿ì
function opwin(win_url, win_attr)
{
	var win = window.open(win_url,"",win_attr + ', scrollbars=yes,scrolling=yes,menubar=no,resizable=yes');
	win.focus();
}

// Å©±â Á¶ÀýµÇÁö ¾Ê´Â ÆË¾÷ À©µµ¿ì
function opwin_noresize(win_url, win_attr)
{
	var win = window.open(win_url,"",win_attr + ', scrollbars=yes,scrolling=yes,menubar=no,resizable=no');
	win.focus();
}

// ½ºÅ©·Ñ¹Ù ¾ø°í Å©±â Á¶ÀýµÇÁö ¾Ê´Â ÆË¾÷ À©µµ¿ì
function opwin_fixed(win_url, win_attr)
{
	var win = window.open(win_url,"",win_attr + ', scrollbars=no,scrolling=no,menubar=no,resizable=no');
	win.focus();
}


// SELECT BOX¿¡ ÀÖ´Â URL·Î »õÃ¢
function selectUrlWin(form) {
	if(form.url.selectedIndex != 0) {
		var win_url = form.url.options[form.url.selectedIndex].value;
		var win = window.open(win_url, "", "width=800,height=600,scrollbars=yes,resizable=yes,screenX=20px,screenY=20px,left=20px,top=20px,toolbar=yes,directories=yes,status=yes,menubar=yes,location=yes");
		win.focus();
	}
}

// SELECT BOX¿¡ ÀÖ´Â URL·Î (°°Àº À©µµ¿ì¿¡¼­)
function changeURL(form) {
	if(form.url.selectedIndex != 0) {
		window.location = form.url.options[form.url.selectedIndex].value;
	}
}

function changeURL2(form) {
	if(form.url.selectedIndex != 0) {
		top.kfp_main.location.href = form.url.options[form.url.selectedIndex].value;
	}
}


// À©µµ¿ì ´Ý°í window.opener·Î
function goURL(url) {
	window.opener.location.href= url;
	self.close();
}

