// -----------------------------------------------------------------------------
var requiredMajorVersion = 8;
var requiredMinorVersion = 0;
var requiredRevision = 0;
var jsVersion = 1.1;

var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

var url = window.location.search ;

if(hasRightVersion) {
	theData   = "";
	theName   = "Session=";
	theCookie = document.cookie+";";
	start = theCookie.indexOf(theName);
	if (start != -1){
		end = theCookie.indexOf(";",start);
		theData = unescape(theCookie.substring(start+theName.length,end));
	}

	if(theData == "true"){
		skip = "visited=true"
	} else {
		skip = "visited=false"
	}
	
	// Flashのタグ
	var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="900" height="500" id="top" align="middle"><param name="allowScriptAccess" value="sameDomain"><param name="movie" value="swf/index.swf?' + skip + '"><param name="menu" value="false" /><param name="quality" value="high"><param name="bgcolor" value="#000000"><embed src="swf/index.swf?' + skip + '" menu="false" quality="high" bgcolor="#000000" width="900" height="500" name="top" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>';
	// Flash ムービーの埋め込み
	document.write(oeTags);
	setSessionCookie();
}else{
	document.write("");
}

function setSessionCookie(){
	theName  = "Session";
	theValue = "true";
	document.cookie = theName + "="+escape(theValue) + "; "
};
