// 자바스크립트

function sgm_confirm(msg, loc) {
	if(confirm(msg)) {
		window.location.href = loc;
	}
}

