﻿// =================================================
// 프레임에서만 페이지 볼수 있음
// =================================================
function check_frame(){
	if(parent.frames.length == 0){
		alert("go home")
		document.location.replace("/");
	}
}
//check_frame();