///// KT爺のメタセコイア指南書　汎用スクリプト /////


/////コピーライト年自動表示関数
function Copyright()
{
	myDate = new Date();
	theYear = myDate.getFullYear();
	document.write("2009-" + theYear);
}

/////メールアドレス分解-表示関数
function mailAddress()
{
	document.write("ktg" + "@ktg" + ".xii" + ".jp");
}

////画像ポップアップウインドウ
function popup(inUrl,inWidth,inHeight)
{
	var OpStr;
	var winWidth = inWidth + 0;
	var winHeight = inHeight + 0;
	OpStr = "width=" + winWidth + ",height=" + winHeight + ",scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0";
	win = window.open('','popup',OpStr);
	win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n');
	win.document.write('<html>\n<head>\n');
	win.document.write('<meta http-equiv="Content-Style-Type" content="text/css">\n');
	win.document.write('<style type="text/css">\n<!--');
	win.document.write('body { margin : 0px; }\n');
	win.document.write('-->\n</style>\n</head>\n');
	win.document.write('<body>\n<div align="center">\n');
	win.document.write('<img src="'+inUrl+'" width="'+inWidth+'" height="'+inHeight+'">\n');
	win.document.write('</div>\n</body>\n</html>');
	win.document.close();
}
