// JavaScript Document


/*========================================

　 ポップアップ用

========================================*/

function popupWindow(wi,he,file,scroll,resize,target){
	window.open(file ,target,"scrollbars=" + scroll + ",resizable=" + resize + ",width=" + wi + ",height=" + he + ",left=100,top=100");
	if(navigator.appName.charAt(0) == "N" && navigator.appVersion.charAt(0) >= 3){
		file.focus();
	}
}