function swapFlash(image) {

	var filename = "";
	
	switch (image) {
	
		case 1:
			filename = "/main.swf";
			break;
			
		case 2:
			filename = "/main.swf?step=3";
			break;
			
		case 3:
			filename = "/main.swf?step=2";
			break;
			
		case 4:
			filename = "/main.swf?step=1";
			break;
	}
	
	// define a new flash object - replace *ed paramaters.
	var f1 = new FlashObject(filename, "banner_flash", "613", "211", "VERSION_(7)", "#000000" );
	
	// send parameters to flash - delete if not used.
	f1.addParam("quality", "high");
	f1.addParam("menu", "false");
	f1.addParam("wmode", "transparent");
	
	// send vaiables to flash like this - delete if not used.
	//f1.addVariable("flashVarText", "this is passed in via FlashVars");
	
	// draw the flash element to the screen.
	f1.write("letter_box");
}
