

<!--
function preload(iA, bD) {
	//-------------------------------------------
	this.imgArray         = new Array();this.imgArray = iA;
	this.baseDir          = bD;
	this.b_PreloadSuccess = false;
	this.b_forcedExec     = false;
	this.imgArraylength   = this.imgArray.length;
	this.LoadImage = new Array();
	this.idx = 0;
	//-------------------------------------------

	if (navigator.appVersion.charAt(0) >= "3" && document.images && this.imgArraylength > 0) {
		for(this.idx = 0; this.idx < this.imgArraylength; this.idx++) {
			this.LoadImage[this.idx] = new Image();
			this.LoadImage[this.idx].src = this.baseDir + this.imgArray[this.idx];
		}
		this.b_PreloadSuccess = true;
	}
	return true;
}

function rollover(nam,o) {
	if(!oPreloadInfo.b_PreloadSuccess && !oPreloadInfo.b_forcedExec) {return false}

	if (navigator.appVersion.charAt(0) >= "3" && document.images){
		document.images[nam].src = oPreloadInfo.baseDir + o;
	}
	return true;
}

function InitFlashAnchor(urlList) {
	this.AnchorList = new Array();this.AnchorList = urlList;
	if(this.AnchorList[0] == "") {return false;}
	return true;
}

function uFlashAnchor(selno) {
	this.LocationPointer = parseInt(selno) - 1;
	var lTargetURL = new String(oSWFAnchorInfo.AnchorList[this.LocationPointer]);
	location.href  = lTargetURL;
}

function ShowFlashMovie(swffilename, swfwwidth, swfheight, swfplay, swfloop, swfquality, swfmenu, swliveconnect, altnativeHTML, pluginsLang) {

	this.SwfFilename = swffilename;
	this.SwfWidth    = swfwwidth;
	this.SwfHeight   = swfheight;
	this.SwfPlay     = swfplay;
	this.SwfLoop     = swfloop;
	this.SwfQuality  = swfquality;
	this.SwfMenu     = swfmenu;
	this.SwfLiveConnect = swliveconnect;
	this.SwfAltnative= altnativeHTML;

	this.bFlashReady = false;

	this.SwfPluginsLang = pluginsLang;
	this.SwfPluginsAddURLLang = "";

	if(this.SwfPluginsLang != "Japanese" && this.SwfPluginsLang != "English") {
		this.SwfPluginsLang = "Japanese";
	}
	if(this.SwfPluginsLang == "Japanese") {
		this.SwfPluginsAddURLLang = 'jp/';
	}
	this.SwfCodeBase    = 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab';
	this.SwfClassID     = 'D27CDB6E-AE6D-11cf-96B8-444553540000';
	this.SwfPluginsPage = 'http://www.macromedia.com/' + this.SwfPluginsAddURLLang + 'shockwave/download/?P1_Prod_Version=ShockwaveFlash&Lang=' + this.SwfPluginsLang;


	//Default
	if(this.SwfPlay != "true" && this.SwfPlay != "false") {
		this.SwfPlay = "true";
	}
	if(this.SwfLoop != "true" && this.SwfLoop != "false") {
		this.SwfLoop = "false";
	}
	if(this.SwfMenu != "true" && this.SwfMenu != "false") {
		this.SwfMenu = "false";
	}



	if(this.SwfLiveConnect != "true" && this.SwfLiveConnect != "false") {
		this.SwfLiveConnect = "false";
	}
	if(this.SwfQuality != "high" && this.SwfQuality != "medium" && this.SwfQuality != "low") {
		this.SwfQuality = "high";
	}

	if(navigator.appName.charAt(0) == "N") { //nn
		if(navigator.appVersion.charAt(0) >= "3") {
			for(l=0;l<navigator.mimeTypes.length;l++) {
				if(navigator.mimeTypes[l].type=="application/x-shockwave-flash") {
					if(navigator.mimeTypes[l].enabledPlugin){this.bFlashReady = true}
				}
			}
		}
		if(this.bFlashReady) { //nn flash ok
			document.write('<embed src="'+ this.SwfFilename + '" width="' + this.SwfWidth + '" height="' + this.SwfHeight + '" play="'+this.SwfPlay+'" loop="'+this.SwfLoop+'" quality="'+this.SwfQuality +'" pluginspage="'+ this.SwfPluginsPage +'" menu="'+ this.SwfMenu +'" swliveconnect="' + this.SwfLiveConnect + '" type="application/x-shockwave-flash"></embed><noembed>'+ this.SwfAltnative +'</noembed>')
		} else { //nn flash non
			document.write(this.SwfAltnative);
		}
	} else { //ie flash check
		if(navigator.appVersion.charAt(0) <= "3") { //ie3 flash non
			document.write(this.SwfAltnative);
		} else {
			if(navigator.appVersion.charAt(0) >= "4" && navigator.platform.charAt(0) == "M") { //mac over ie4
				document.write('<embed src="'+this.SwfFilename+'" width="'+this.SwfWidth+'" height="'+this.SwfHeight+'" play="'+this.SwfPlay+'" loop="'+this.SwfLoop+'" quality="'+this.SwfQuality+'" pluginspage="'+this.SwfPluginsPage+'" menu="'+ this.SwfMenu +'" swliveconnect="' + this.SwfLiveConnect + '" type="application/x-shockwave-flash"></embed><noembed>'+this.SwfAltnative+'</noembed>');
			} else { //win over ie4
				document.write('<object classid="clsid:'+this.SwfClassID+'" width="'+this.SwfWidth+'" height="'+this.SwfHeight+'" codebase="'+this.SwfCodeBase+'"><param name="movie" value="'+this.SwfFilename+'"><param name="menu" value="'+this.SwfMenu+'"><param name="play" value="'+this.SwfPlay+'"><param name="loop" value="'+this.SwfLoop+'"><param name="quality" value="'+this.SwfQuality+'">'+this.SwfAltnative+'</object>');
			}
		}
	}

}

//-->

