function flashVid(whichLink){	var windowName = whichLink;		var thePath = "../flash/";	var theFile;	switch(whichLink) {		// to add a video link from the index page, make a new case identical to the old except for a new line reading		// thePath="flash/"		case "spamwalk1":			theTitle = "Spamwalk Part 1";			theFile = "spamwalk-1-car.flv";			break;		case "spamwalk2":			theTitle = "Spamwalk Part 2";			theFile = "spamwalk-2-cat.flv";			break;		case "spamwalk3":			theTitle = "Spamwalk Part 3";			theFile = "spamwalk-3-walk.flv";			break;		case "aswesow1":			theTitle = "As We Sow Part 1";			theFile = "as-we-sow-part-1.flv";			break;		case "aswesow2":			theTitle = "As We Sow Part 2";			theFile = "as-we-sow-part-2.flv";			break;		case "aswesow3":			theTitle = "As We Sow Part 3";			theFile = "as-we-sow-part-3.flv";			break;		case "keithVid":			theTitle = "The Ed Davis Band";			theFile = "ed-davis-keith-loft.flv";			break;		case "desiVid":			theTitle = "Desi Desi Desi";			theFile = "desis-a7-v2.flv";			break;		case "beerPicnic":			theTitle = "Beer Picnic by The Bad Tuna Experience";			theFile = "beer-picnic.flv";			break;	}	thePath = thePath + theFile;	writeToVidWindow(windowName,theTitle,thePath);}