function inTourVR_SendForm(pType){
	var tourvr_frm = document.getElementById("frm");
	var tourvr_amode = document.getElementById("amode");
	var tourvr_title = document.getElementById("tuvtitle");
	tourvr_amode.value = pType;

	switch(pType){
		case "delete" :
			if(!confirm("삭제된 자료는 복구되지 않습니다.")){return;}
			tourvr_frm.action = "frmDelete.asp";
			break;
		case "insert" :
			if(tourvr_title.value == ''){ alert('제목을 입력하세요.'); tourvr_title.focus();	return; }
			tourvr_frm.action = "frmInsert.asp";
			break;
		case "update" :
			tourvr_frm.action = "frmModify.asp";
			if(tourvr_title.value == ''){ alert('제목을 입력하세요.'); tourvr_title.focus();	return; }
			break;
	}
	tourvr_frm.encoding = "multipart/form-data";
	tourvr_frm.method = "POST";
	tourvr_frm.submit();
}

function lstTourVR_Search() {
	var tourvr_frm = document.getElementById("frm");

	tourvr_frm.action = "lstTourVR.asp";
	tourvr_frm.method = "GET";
	tourvr_frm.submit();
}

function lstTourVRGallery_Search() {
	var tourvr_frm = document.getElementById("frm");

	tourvr_frm.action = "lstTourVRGallery.asp";
	tourvr_frm.method = "GET";
	tourvr_frm.submit();
}

