w_vetData = null;
w_vetRegist = null;
var dir = "vet/";

function pref(ken) {
	w_vetData = window.open("","vetData","SCROLLBARS=yes,width=640,height=800");
	w_vetData.focus();

	if(w_vetData != null) {
		w_vetData.location = dir + ken + ".htm";
	}
}

function regist() {
	w_vetRegist = window.open("","vetRegist","TOOLBARS=yes,SCROLLBARS=yes,width=640,height=500");
	w_vetRegist.focus();
	w_vetRegist.location = "regist.htm";
}

function closeAllWin() {
	if(w_vetData != null) {
		w_vetData.close();
	}
	if(w_vetRegist != null) {
		w_vetRegist.close();
	}
}
