
function Search(choice)	{

	var SearchValue = new String();
	var SearchTextBox = document.getElementById("SearchBox");
	SearchValue = SearchTextBox.value;
	SearchValue = escape(SearchValue);


	var MCISearchWindow


		if (SearchValue.length > 0)
		{
			MCISearchWindow = window.open("http://www.mycommunityinfo.ca/MCIResults.aspx?Main=1&Ref=CAP&QueryString=" + SearchValue + "&Restrict=MCI",
					"MCI","top=34,resizable=1,scrollbars=yes,menubar=yes, location=yes, toolbar=yes, fullscreen=no, status=yes", false);


   			MCISearchWindow.focus();
   		}

		else
		{
			MCISearchWindow = window.open("http://www.mycommunityinfo.ca/MCISearch.aspx?Ref=CAP",
							"MCI","top=34,resizable=1,scrollbars=yes,menubar=yes, location=yes, toolbar=yes, fullscreen=no, status=yes",false);


			MCISearchWindow.focus();

   		}



}


function InputFieldFocus()
{
	document.getElementById("SearchBox").focus();
}


