function flash(whichLink){	windowName = whichLink;	// thePath variable below must be overwritten as in [ thePath = "flash/"; ] if we call this function from the index page	var thePath = "../flash/";	var swfFile;	var theW;	var theH;	switch(whichLink) {		case "harriet":			theTitle = "Little Harriet";			thePath = "flash/";			swfFile = "harriet-anim.swf";			theW = "600";			theH = "450";			break		case "3way":			theTitle = "3 Way Hat: It's a Snap!";			thePath = "flash/";			swfFile = "three-way-hat.swf";			theW = "536";			theH = "764";			break		case "arizona":			theTitle = "Arizona";			swfFile = "arizona-anim-v2.swf";			theW = "1000";			theH = "690";			break	}	swfFile = thePath + swfFile;	createFlashPopUp(windowName,theTitle,swfFile,theW,theH)}