//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
			
			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = "WIN 6,0,21,0";

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = "always";

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == "") {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == "d") {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '';
  if (isIE && isWin && !isOpera)
  {
    str += '<object ';
    for (var i in objAttrs)
    {
      str += i + '="' + objAttrs[i] + '" ';
    }
    str += '>';
    for (var i in params)
    {
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    }
    str += '</object>';
  }
  else
  {
    str += '<embed ';
    for (var i in embedAttrs)
    {
      str += i + '="' + embedAttrs[i] + '" ';
    }
    str += '> </embed>';
  }

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}



/* PHOTO GALLERY ページ */
function tojiru(){
	window.close();
}


function photo090403no3(){
	win=window.open("gallery090403_3.html","win","menubar=0,toolbar=0,scrollbars=1,width=700,height=1000");
}
function photo090403no2(){
	win=window.open("gallery090403_2.html","win","menubar=0,toolbar=0,width=700,height=900");
}
function photo090403no1(){
	win=window.open("gallery090403_1.html","win","menubar=0,toolbar=0,scrollbars=1,width=700,height=1800");
}
function photo090225(){
	win=window.open("gallery090225.html","win","menubar=0,toolbar=0,width=700,height=1100");
}
function photo090202(){
	win=window.open("gallery090202.html","win","menubar=0,toolbar=0,width=600,height=800");
}
function photo081218no1(){
	win=window.open("gallery081218-1.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081218no2(){
	win=window.open("gallery081218-2.html","win","menubar=0,toolbar=0,width=700,height=650");
}
function photo081218no3(){
	win=window.open("gallery081218-3.html","win","menubar=0,toolbar=0,width=600,height=600");
}
function photo081220no1(){
	win=window.open("gallery081220-1.html","win","menubar=0,toolbar=0,width=700,height=600");
}
function photo081220no2(){
	win=window.open("gallery081220-2.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081220no3(){
	win=window.open("gallery081220-3.html","win","menubar=0,toolbar=0,width=700,height=600");
}
function photo081110no1(){
	win=window.open("gallery081110-1.html","win","menubar=0,toolbar=0,width=700,height=600");
}
function photo081110no2(){
	win=window.open("gallery081110-2.html","win","menubar=0,toolbar=0,width=600,height=800");
}
function photo081221no1(){
	win=window.open("gallery081221-1.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081221no2(){
	win=window.open("gallery081221-2.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081221no3(){
	win=window.open("gallery081221-3.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081221no4(){
	win=window.open("gallery081221-4.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081221no5(){
	win=window.open("gallery081221-5.html","win","menubar=0,toolbar=0,width=700,height=600");
}
function photo081221no6(){
	win=window.open("gallery081221-6.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081221no7(){
	win=window.open("gallery081221-7.html","win","menubar=0,toolbar=0,width=600,height=700");
}
function photo081221no8(){
	win=window.open("gallery081221-8.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081221no9(){
	win=window.open("gallery081221-9.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081221no10(){
	win=window.open("gallery081221-10.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081221no11(){
	win=window.open("gallery081221-11.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no1(){
	win=window.open("gallery081223-1.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no2(){
	win=window.open("gallery081223-2.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no3(){
	win=window.open("gallery081223-3.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no4(){
	win=window.open("gallery081223-4.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no5(){
	win=window.open("gallery081223-5.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no6(){
	win=window.open("gallery081223-6.html","win","menubar=0,toolbar=0,width=700,height=500");
}
function photo081223no7(){
	win=window.open("gallery081223-7.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no8(){
	win=window.open("gallery081223-8.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no9(){
	win=window.open("gallery081223-9.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no10(){
	win=window.open("gallery081223-10.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no11(){
	win=window.open("gallery081223-11.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081223no12(){
	win=window.open("gallery081223-12.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no13(){
	win=window.open("gallery081223-13.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081223no14(){
	win=window.open("gallery081223-14.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081223no15(){
	win=window.open("gallery081223-15.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no16(){
	win=window.open("gallery081223-16.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no17(){
	win=window.open("gallery081223-17.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no18(){
	win=window.open("gallery081223-18.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no19(){
	win=window.open("gallery081223-19.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no20(){
	win=window.open("gallery081223-20.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no21(){
	win=window.open("gallery081223-21.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no22(){
	win=window.open("gallery081223-22.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no23(){
	win=window.open("gallery081223-23.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no24(){
	win=window.open("gallery081223-24.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no25(){
	win=window.open("gallery081223-25.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no26(){
	win=window.open("gallery081223-26.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no27(){
	win=window.open("gallery081223-27.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no28(){
	win=window.open("gallery081223-28.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no29(){
	win=window.open("gallery081223-29.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081223no30(){
	win=window.open("gallery081223-30.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081224no1(){
	win=window.open("gallery081224-1.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no2(){
	win=window.open("gallery081224-2.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no3(){
	win=window.open("gallery081224-3.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081224no4(){
	win=window.open("gallery081224-4.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no5(){
	win=window.open("gallery081224-5.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no6(){
	win=window.open("gallery081224-6.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no7(){
	win=window.open("gallery081224-7.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no8(){
	win=window.open("gallery081224-8.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081224no9(){
	win=window.open("gallery081224-9.html","win","menubar=0,toolbar=0,width=700,height=700");
}
function photo081224no10(){
	win=window.open("gallery081224-10.html","win","menubar=0,toolbar=0,width=700,height=700");
}
function photo081224no11(){
	win=window.open("gallery081224-11.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no12(){
	win=window.open("gallery081224-12.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no13(){
	win=window.open("gallery081224-13.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no14(){
	win=window.open("gallery081224-14.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no15(){
	win=window.open("gallery081224-15.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no16(){
	win=window.open("gallery081224-16.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no17(){
	win=window.open("gallery081224-17.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no18(){
	win=window.open("gallery081224-18.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no19(){
	win=window.open("gallery081224-19.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no20(){
	win=window.open("gallery081224-20.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no21(){
	win=window.open("gallery081224-21.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no22(){
	win=window.open("gallery081224-22.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no23(){
	win=window.open("gallery081224-23.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no24(){
	win=window.open("gallery081224-24.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no25(){
	win=window.open("gallery081224-25.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no26(){
	win=window.open("gallery081224-26.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no27(){
	win=window.open("gallery081224-27.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo081224no28(){
	win=window.open("gallery081224-28.html","win","menubar=0,toolbar=0,width=700,height=500");
}
function photo081224no29(){
	win=window.open("gallery081224-29.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo081224no30(){
	win=window.open("gallery081224-30.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo081224no31(){
	win=window.open("gallery081224-31.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no32(){
	win=window.open("gallery081224-32.html","win","menubar=0,toolbar=0,width=500,height=700");
}
function photo081224no33(){
	win=window.open("gallery081224-33.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no34(){
	win=window.open("gallery081224-34.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no35(){
	win=window.open("gallery081224-35.html","win","menubar=0,toolbar=0,width=400,height=700");
}
function photo081224no36(){
	win=window.open("gallery081224-36.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090612no1(){
	win=window.open("gallery090612-1.html","win","menubar=0,toolbar=0,width=600,height=700");
}
function photo090612no2(){
	win=window.open("gallery090612-2.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090612no3(){
	win=window.open("gallery090612-3.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090612no4(){
	win=window.open("gallery090612-4.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090612no5(){
	win=window.open("gallery090612-5.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090612no6(){
	win=window.open("gallery090612-6.html","win","menubar=0,toolbar=0,width=600,height=800");
}
function photo090612no7(){
	win=window.open("gallery090612-7.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo090612no8(){
	win=window.open("gallery090612-8.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090612no9(){
	win=window.open("gallery090612-9.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090612no10(){
	win=window.open("gallery090612-10.html","win","menubar=0,toolbar=0,width=600,height=800");
}
function photo090612no11(){
	win=window.open("gallery090612-11.html","win","menubar=0,toolbar=0,width=600,height=800");
}
function photo090612no12(){
	win=window.open("gallery090612-12.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090615no1(){
	win=window.open("gallery090615-1.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090615no2(){
	win=window.open("gallery090615-2.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090615no3(){
	win=window.open("gallery090615-3.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090615no4(){
	win=window.open("gallery090615-4.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090615no5(){
	win=window.open("gallery090615-5.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090615no6(){
	win=window.open("gallery090615-6.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function photo090615no7(){
	win=window.open("gallery090615-7.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090615no8(){
	win=window.open("gallery090615-8.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090615no9(){
	win=window.open("gallery090615-9.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090615no10(){
	win=window.open("gallery090615-10.html","win","menubar=0,toolbar=0,width=600,height=900");
}
function photo090615no11(){
	win=window.open("gallery090615-11.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090615no12(){
	win=window.open("gallery090615-12.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090615no13(){
	win=window.open("gallery090615-13.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090615no14(){
	win=window.open("gallery090615-14.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090728no1(){
	win=window.open("gallery090728-1.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090728no2(){
	win=window.open("gallery090728-2.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090728no3(){
	win=window.open("gallery090728-3.html","win","menubar=0,toolbar=0,width=900,height=700");
}
function photo090728no4(){
	win=window.open("gallery090728-4.html","win","menubar=0,toolbar=0,width=600,height=900");
}
function photo090729no1(){
	win=window.open("gallery090729-1.html","win","menubar=0,toolbar=0,width=600,height=800");
}
function photo090729no2(){
	win=window.open("gallery090729-2.html","win","menubar=0,toolbar=0,width=700,height=600");
}
function photo110520no1(){
	win=window.open("gallery110520-1.html","win","menubar=0,toolbar=0,width=750,height=700");
}
function photo110520no2(){
	win=window.open("gallery110520-2.html","win","menubar=0,toolbar=0,width=750,height=700");
}
function photo110520no3(){
	win=window.open("gallery110520-3.html","win","menubar=0,toolbar=0,width=750,height=700");
}
function photo110520no4(){
	win=window.open("gallery110520-4.html","win","menubar=0,toolbar=0,width=750,height=700");
}


/* SHOP ページ */
function shop1(){
	win=window.open("shop-1.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function shop2(){
	win=window.open("shop-2.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function shop3(){
	win=window.open("shop-3.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function shop4(){
	win=window.open("shop-4.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function shop5(){
	win=window.open("shop-5.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function shop6(){
	win=window.open("shop-6.html","win","menubar=0,toolbar=0,width=800,height=800");
}
function shop7(){
	win=window.open("shop-7.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function shop8(){
	win=window.open("shop-8.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function shop9(){
	win=window.open("shop-9.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function shop10(){
	win=window.open("shop-10.html","win","menubar=0,toolbar=0,width=700,height=800");
}
function shop11(){
	win=window.open("shop-11.html","win","menubar=0,toolbar=0,width=500,height=800");
}
function shop12(){
	win=window.open("shop-12.html","win","menubar=0,toolbar=0,width=740,height=600");
}
function shop13(){
	win=window.open("shop-13.html","win","menubar=0,toolbar=0,width=800,height=700");
}
function shop14(){
	win=window.open("shop-14.html","win","menubar=0,toolbar=0,width=700,height=900");
}
function shop15(){
	win=window.open("shop-15.html","win","menubar=0,toolbar=0,width=700,height=700");
}
function shop16(){
	win=window.open("shop-16.html","win","menubar=0,toolbar=0,width=600,height=800");
}
function shop17(){
	win=window.open("shop-17.html","win","menubar=0,toolbar=0,width=800,height=600");
}



/* キャンペーン ページ */
function campaign1(){
	win=window.open("campaign1.html","win","menubar=0,toolbar=0,width=700,height=900");
}



/* 200912_tenjikai.html ページ */
function photo091218no1(){
	win=window.open("gallery091218-1.html","win","menubar=0,toolbar=0,width=500,height=900");
}
function photo091218no2(){
	win=window.open("gallery091218-2.html","win","menubar=0,toolbar=0,width=900,height=600");
}
function photo091218no3(){
	win=window.open("gallery091218-3.html","win","menubar=0,toolbar=0,width=500,height=900");
}
function photo091218no4(){
	win=window.open("gallery091218-4.html","win","menubar=0,toolbar=0,width=900,height=600");
}
function photo091218no5(){
	win=window.open("gallery091218-5.html","win","menubar=0,toolbar=0,width=500,height=900");
}
function photo091218no6(){
	win=window.open("gallery091218-6.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091218no7(){
	win=window.open("gallery091218-7.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091218no8(){
	win=window.open("gallery091218-8.html","win","menubar=0,toolbar=0,width=500,height=900");
}
function photo091218no9(){
	win=window.open("gallery091218-9.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091218no10(){
	win=window.open("gallery091218-10.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091218no11(){
	win=window.open("gallery091218-11.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091218no12(){
	win=window.open("gallery091218-12.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091218no13(){
	win=window.open("gallery091218-13.html","win","menubar=0,toolbar=0,width=500,height=900");
}
function photo091218no14(){
	win=window.open("gallery091218-14.html","win","menubar=0,toolbar=0,width=700,height=900");
}
/* 200912_tenjikai.html ページ */


/* 200911_houkoku.html ページ */
function photo091219no1(){
	win=window.open("gallery091219-1.html","win","menubar=0,toolbar=0,width=500,height=900");
}
function photo091219no2(){
	win=window.open("gallery091219-2.html","win","menubar=0,toolbar=0,width=800,height=500");
}
function photo091219no3(){
	win=window.open("gallery091219-3.html","win","menubar=0,toolbar=0,width=800,height=500");
}
function photo091219no4(){
	win=window.open("gallery091219-4.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no5(){
	win=window.open("gallery091219-5.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no6(){
	win=window.open("gallery091219-6.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no7(){
	win=window.open("gallery091219-7.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no8(){
	win=window.open("gallery091219-8.html","win","menubar=0,toolbar=0,width=600,height=900");
}
function photo091219no9(){
	win=window.open("gallery091219-9.html","win","menubar=0,toolbar=0,width=500,height=900");
}
function photo091219no10(){
	win=window.open("gallery091219-10.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no11(){
	win=window.open("gallery091219-11.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no12(){
	win=window.open("gallery091219-12.html","win","menubar=0,toolbar=0,width=600,height=900");
}
function photo091219no13(){
	win=window.open("gallery091219-13.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no14(){
	win=window.open("gallery091219-14.html","win","menubar=0,toolbar=0,width=600,height=900");
}
function photo091219no15(){
	win=window.open("gallery091219-15.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no16(){
	win=window.open("gallery091219-16.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no17(){
	win=window.open("gallery091219-17.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no18(){
	win=window.open("gallery091219-18.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no19(){
	win=window.open("gallery091219-19.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no20(){
	win=window.open("gallery091219-20.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no21(){
	win=window.open("gallery091219-21.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo091219no22(){
	win=window.open("gallery091219-22.html","win","menubar=0,toolbar=0,width=600,height=900");
}
function photo091219no23(){
	win=window.open("gallery091219-23.html","win","menubar=0,toolbar=0,width=800,height=600");
}
/* 200911_houkoku.html ページ */


/* bolanthia.html ページ */
function photo100607no1(){
	win=window.open("gallery100607-1.html","win","menubar=0,toolbar=0,width=800,height=500");
}
function photo100607no2(){
	win=window.open("gallery100607-2.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no3(){
	win=window.open("gallery100607-3.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no4(){
	win=window.open("gallery100607-4.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no5(){
	win=window.open("gallery100607-5.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no6(){
	win=window.open("gallery100607-6.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no7(){
	win=window.open("gallery100607-7.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no8(){
	win=window.open("gallery100607-8.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no9(){
	win=window.open("gallery100607-9.html","win","menubar=0,toolbar=0,width=700,height=850");
}
function photo100607no10(){
	win=window.open("gallery100607-10.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no11(){
	win=window.open("gallery100607-11.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no12(){
	win=window.open("gallery100607-12.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no13(){
	win=window.open("gallery100607-13.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no14(){
	win=window.open("gallery100607-14.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no15(){
	win=window.open("gallery100607-15.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no16(){
	win=window.open("gallery100607-16.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no17(){
	win=window.open("gallery100607-17.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no18(){
	win=window.open("gallery100607-18.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no19(){
	win=window.open("gallery100607-19.html","win","menubar=0,toolbar=0,width=800,height=750");
}
function photo100607no20(){
	win=window.open("gallery100607-20.html","win","menubar=0,toolbar=0,width=700,height=850");
}
function photo100607no21(){
	win=window.open("gallery100607-21.html","win","menubar=0,toolbar=0,width=700,height=850");
}
/* bolanthia.html ページ */


/* media.html ページ */
function photo100609no1(){
	win=window.open("gallery100609-1.html","win","menubar=0,toolbar=0,width=800,height=600");
}
/* media.html ページ */


/* ecokaruta.html ページ */
function ecokarutano1(){
	win=window.open("ecokaruta_gallery1.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function ecokarutano2(){
	win=window.open("ecokaruta_gallery2.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function ecokarutano3(){
	win=window.open("ecokaruta_gallery3.html","win","menubar=0,toolbar=0,width=800,height=600");
}
/* ecokaruta.html ページ */


/* donation.html ページ */
function photo110621no1(){
	win=window.open("donation_gallery1.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo110621no2(){
	win=window.open("donation_gallery2.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo110621no3(){
	win=window.open("donation_gallery3.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo110621no4(){
	win=window.open("donation_gallery4.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo110621no5(){
	win=window.open("donation_gallery5.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo110621no6(){
	win=window.open("donation_gallery6.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo110621no7(){
	win=window.open("donation_gallery7.html","win","menubar=0,toolbar=0,width=600,height=800");
}
function photo110621no8(){
	win=window.open("donation_gallery8.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo110621no9(){
	win=window.open("donation_gallery9.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo110621no10(){
	win=window.open("donation_gallery10.html","win","menubar=0,toolbar=0,width=800,height=800");
}
/* donation.html ページ */


/* 201111_houkoku ページ */
function photo111212no1(){
	win=window.open("gallery111212-1.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no2(){
	win=window.open("gallery111212-2.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no3(){
	win=window.open("gallery111212-3.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no4(){
	win=window.open("gallery111212-4.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no5(){
	win=window.open("gallery111212-5.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no6(){
	win=window.open("gallery111212-6.html","win","menubar=0,toolbar=0,width=700,height=800");
}
function photo111212no7(){
	win=window.open("gallery111212-7.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no8(){
	win=window.open("gallery111212-8.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no9(){
	win=window.open("gallery111212-9.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no10(){
	win=window.open("gallery111212-10.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no11(){
	win=window.open("gallery111212-11.html","win","menubar=0,toolbar=0,width=700,height=800");
}
function photo111212no12(){
	win=window.open("gallery111212-12.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no13(){
	win=window.open("gallery111212-13.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no14(){
	win=window.open("gallery111212-14.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no15(){
	win=window.open("gallery111212-15.html","win","menubar=0,toolbar=0,width=700,height=800");
}
function photo111212no16(){
	win=window.open("gallery111212-16.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no17(){
	win=window.open("gallery111212-17.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no18(){
	win=window.open("gallery111212-18.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no19(){
	win=window.open("gallery111212-19.html","win","menubar=0,toolbar=0,width=700,height=800");
}
function photo111212no20(){
	win=window.open("gallery111212-20.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no21(){
	win=window.open("gallery111212-21.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no22(){
	win=window.open("gallery111212-22.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no23(){
	win=window.open("gallery111212-23.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no24(){
	win=window.open("gallery111212-24.html","win","menubar=0,toolbar=0,width=800,height=600");
}
function photo111212no25(){
	win=window.open("gallery111212-25.html","win","menubar=0,toolbar=0,width=800,height=600");
}
/* 201111_houkoku ページ */
