function doChange(objElement, state) {
	if (state == true) {
		objElement.className = "mitemh";
	} else {
		objElement.className = "mitem";
	}
}

function loadSWF(sLoadPath){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,42,0"');
	document.write('  id="Banner1" width="700" height="90">');
	document.write('  <param name="movie" value="' + sLoadPath + 'Banner1.swf">');
	document.write('  <param name="bgcolor" value="#000000">');
	document.write('  <param name="quality" value="high">');
	document.write('  <param name="allowscriptaccess" value="samedomain">');
	document.write('  <embed type="application/x-shockwave-flash"');
	document.write('   pluginspage="http://www.macromedia.com/go/getflashplayer"');
	document.write('   width="700" height="90"');
	document.write('   name="Banner1" src="' + sLoadPath + 'Banner1.swf"');
	document.write('   bgcolor="#000000" quality="high"');
	document.write('   swLiveConnect="true" allowScriptAccess="samedomain"');
	document.write('  ></embed>');
	document.write('</object>');
}