// JavaScript Documentvar sp = document.URL.split('/');var thisURL = sp[(sp.length-1)];var stringArr = new Array();if (thisURL.indexOf('?') != -1) {	splitURL = thisURL.split('?');	thisURL = splitURL[0];	stringArr = splitURL[1].split('&');	for (i = 0; i < stringArr.length; i ++) {		stringArr[i] = stringArr[i].split('=');	}}//var thisSec = thisURL.substr(0,2)//flashObject = function(file,h,w) {	// file = path to the SWF file.	// w = width	// h = height	// c = color	// additional arguments are flashvars passed in name/value pairs.	var fv = false;	if (arguments.length > 3) {		fvStr = "";		for (i = 3; i < arguments.length; i ++) {			fvStr += arguments[i] + '=' + arguments[(i+1)] + '&';			i ++;		}		fvStr = fvStr.slice(0,-1);		fv = true;	}	var dwStr = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ';	dwStr += 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ';	dwStr += 'width="'+w+'" height="'+h+'">';	dwStr += '<param name="allowScriptAccess" value="always" />';	dwStr += '<param name="movie" value="'+file+'" />';	dwStr += '<param name="quality" value="high" />';	dwStr += '<param name="bgcolor" value="#ffffff" />';	if (fv) {		dwStr += '<param name="FlashVars" value="'+fvStr+'" />';	}		dwStr += '<embed src="'+file+'" quality="high" bgcolor="#ffffff" ';	dwStr += 'width="'+w+'" height="'+h+'" align="middle" ';	if (fv) {		dwStr += 'FlashVars="'+fvStr+'" ';	}	dwStr += 'allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ';	dwStr += 'pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';	document.write(dwStr);}<!--function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}//-->