function ShowNavigator()
{
	var cities = new Array(
"|Выберите поселок............",
"|Калужское шоссе",
"mskcottage01|Грачевка",
"mskcottage02|Европа Хилл",
"mskcottage03|Левитан",
"mskcottage04|Лето",
"mskcottage05|Панорама",
"mskcottage06|Шаганино"
		);
	document.write("<span class=ntext>Навигатор:</span><br>");
	document.write("<select class=navigator onchange=\"javascript:if (this.value != '') window.location.href=this.value + '.html';\">");
	for(i = 0; i < cities.length; i++)
	{
		c = cities[i];
		document.write("<option value=" + c.substring(0, c.indexOf("|")) + ">" + c.substring(c.indexOf("|")+1, c.length) + "</option>");
	}
	document.write("</select><br><br>");
}
