<!--

function writeFlash(swf, width, height, bgcol, jpg, alt){
	if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.appVersion.indexOf("Win") != -1)) {
		document.write('<scr' + 'ipt language=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag
		document.write('on error resume next \n');
		document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6")))\n');
		document.write('</scr' + 'ipt\> \n');
	}
	if (flashversion >= 6) {
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
		document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
		document.write(' id="index_flash" width="' + width + '" height="' + height + '" align="">');
		document.write(' <param name=movie value="images/' + swf + '"> <param name=quality value=high> <param name="BASE" value="."> <param name=bgcolor value=#' + bgcol + '>  ');
		document.write(' <embed src="images/' + swf + '" quality=high bgcolor=#' + bgcol + ' ');
		document.write(' swLiveConnect=false width="' + width + '" height="' + height + '" name="index_flash" align="" base="."  ');
		document.write(' type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer" wmode="transparent">');
		document.write(' </embed>');
		document.write(' </object>');
	}else{
		document.write('<img src="images/' + jpg + '" width="' + width + ' " height="' + height + '" alt="' + alt + '">');
	}
}

function bannerHilite(el_id, c){
	if(!document.getElementById) return;
	var el = document.getElementById(el_id);
	el.style.color = c;	
}


// cookie and language picker moved to header include!

//-->