
	function confirmAction(query,result) {
		var agree=confirm(query);
		if (agree)
			document.location=result;
		}
		
		
     function selectByValue(value)
     {
          for(var i = 0; i < document.aspnetForm.ctl00_ContentPlaceHolder_city.options.length; i++)
          {
               if(value == document.aspnetForm.ctl00_ContentPlaceHolder_city.options[i].value)
               {
                    document.aspnetForm.ctl00_ContentPlaceHolder_city.selectedIndex = i;
                    break; // Break out to stop at the first value
               }
          }
     }
     