function writeSelectHTML() {	document.writeln("<form>");	document.write("  <select name = \"SiteSelector\" size = \"1\" language = \"JavaScript\"");	document.writeln(" onChange=\"selectStrip(this)\">");		document.writeln("    <option value=\"../index.html\" selected>Select a Strip</option>");	 		for (var index = 0; index < numberOfStrips; index++) {					var optionLine = "      <option value = \"" + locations[index] + "\">";						optionLine += stripTitles[index] + "</option>";						document.writeln(optionLine);				}	document.writeln("  </select>\n</form>");}