
// CSS の読み込み
document.writeln('<link rel="stylesheet" type="text/css" href="css/base.css" title="fontPROPERTY">');

// 右クリック禁止
var Mac = true;
if(navigator.userAgent.indexOf("Mac") != -1) {
	Mac = true;
}
else {
	Mac = false;
}

function right_click(e) {
	if(navigator.appName == "Microsoft Internet Explorer") {
		alert("コンテキストメニューからの操作は禁止されています。");
		return false;
	}
	else if(navigator.appName == "Netscape") {
		if(e.which == 3 || e.moddifiers == 2 || e.ctrlKey) {
			alert("コンテキストメニューからの操作は禁止されています。");
			return false;
		}
	}
}

function forbidden_rclick() {
	alert("コンテキストメニューからの操作は禁止されています。");
	return false;
}

document.oncontextmenu = forbidden_rclick;

// 写真の閲覧
function photo_view(file_path) {
	var img = new Image();
	img.src = file_path;
	var url	= "./view.php?file_path=" + file_path;
	var opt = "width=" + (img.width + 40) + ",height=" + (img.height + 60) + ",scrollbars=yes";
	window.open(url, "photo", opt);
	
	return false;
}

function on_close_window() {
	window.close();
	return false;
}