function getCookieVal (offset) {
  var endstr = document.cookie.indexOf (";", offset);
  if (endstr == -1)
    endstr = document.cookie.length;
  return unescape(document.cookie.substring(offset, endstr));
}

function GetCookie (name) {
  var arg = name + "=";
  var alen = arg.length;
  var clen = document.cookie.length;
  var i = 0;
  while (i < clen) {
    var j = i + alen;
    if (document.cookie.substring(i, j) == arg)
      return getCookieVal (j);
    i = document.cookie.indexOf(" ", i) + 1;
    if (i == 0) 
      break;
  }
  return null;
}

function SetCookie (name, value) {
  var argv = SetCookie.arguments;
  var argc = SetCookie.arguments.length;
  var expires = (argc > 2) ? argv[2] : null;
  var path = (argc > 3) ? argv[3] : null;
  var domain = (argc > 4) ? argv[4] : null;
  var secure = (argc > 5) ? argv[5] : false;
  document.cookie = name + "=" + escape (value) +
    ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
    ((path == null) ? "" : ("; path=" + path)) +
    ((domain == null) ? "" : ("; domain=" + domain)) +
    ((secure == true) ? "; secure" : "");
}


var plugin = 0;
function check_flash (mver) {
	plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
	if ( plugin ) {
		plugin = parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= mver;
	}
	else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 
	   && (navigator.userAgent.indexOf("Windows 95")>=0 || navigator.userAgent.indexOf("Windows 98")>=0 || navigator.userAgent.indexOf("Windows NT")>=0)) {
		document.write('<SCRIPT LANGUAGE=VBScript\> \n');
		document.write('on error resume next \n');
		document.write('plugin = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.'+mver+'")))\n');
		document.write('</SCRIPT\> \n');
	}
}


function GetFlashName (fl1, fl2, snum) {
var flash = fl1;
		if (!(num2 = GetCookie(flash+'snum'))) num2 = 0;
		if (snum <= num2) {// show second flash
			flash = fl2;
		}
		else {
			num2++;
			var expdate = new Date();
			expdate.setTime(expdate.getTime() + (30*365*24*60*60));
			SetCookie(flash+'snum',num2,expdate);
		}
return flash;
}

function flash_or_html (flash, w, h, func, fver, ff, fl2, snum) {

var fver = (fver > 0) ? fver : 3; // min flash version
var ff = (ff) ? ff : false; //force_flash
var snum = (snum > 0) ? snum : 1;
check_flash (fver);

	if ( plugin || ff) {		
		if (fl2) flash = GetFlashName (flash, fl2, snum);
			document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+fver+',0,0,0" width="'+w+'" height="'+h+'" id="whiteHouseTown" align="middle">');
document.write('<param name="allowScriptAccess" value="sameDomain">');
document.write('<param name="movie" value="'+flash+'"><param name="quality" value="high"><param name="bgcolor" value="#ffffff"><embed src="'+flash+'" quality="high" bgcolor="#ffffff" width="'+w+'" height="'+h+'" name="whiteHouseTown" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');
		} else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0)){
			eval(func);
	}
}

function ImageOpenWindow(theURL,winName,features) {
if(!winName){winName = "photo";}
if(!features){features = "scrollbars=1,resizable=1,width=460,height=390";}




      imgWindow = window.open("",winName,features);
      imgWindow.document.close();
      imgWindow.document.open;
      imgWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n");
      imgWindow.document.write("       \"http://www.w3.org/TR/html4/loose.dtd\">\n");
      imgWindow.document.write("<html lang=\"ja\" class=\"smallwindow\">\n");
      imgWindow.document.write("<head>\n");
      imgWindow.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Shift_JIS\">\n");
      imgWindow.document.write("<meta http-equiv=\"Content-Language\" Content=\"ja\">\n");
      imgWindow.document.write("<title>Photo</title>\n");
      imgWindow.document.write("<meta http-equiv=\"Content-Script-Type\" content=\"text/javascript\">\n");
      imgWindow.document.write("<meta http-equiv=\"Content-Style-Type\" content=\"text/css\">\n");
      imgWindow.document.write("<link rel=\"stylesheet\" media=\"screen,print\" href=\"/common/dummy.css\" type=\"text/css\">");
      imgWindow.document.write("<script type=\"text/javascript\">");
      imgWindow.document.write("<!--\n");
      imgWindow.document.write("self.window.focus()\;\n");
      imgWindow.document.write("//-->\n");
	  imgWindow.document.write("</script>\n");
      imgWindow.document.write("</head>\n");
      imgWindow.document.write("<body class=\"smallwindow\">\n");
      imgWindow.document.write("<h1>Photo</h1>\n");
      imgWindow.document.write("<div id=\"photo\">\n");
      imgWindow.document.write("<img src=\"" + theURL + "\"></div>\n");
      imgWindow.document.write("<div id=\"closewindow\"><a href=\"javascript:window.close();\">Close Window</a></div>\n");
      imgWindow.document.write("</body>\n");
      imgWindow.document.write("</html>");
      imgWindow.document.close();
}
