function setHotelSelect()
{
	var hotelService = new ilikeAjaxService( "/hotelService.php" );
	hotelService.AddElement( "hotelcity", "hotelcity", true );
	hotelService.AddElement( "rating", "rating", true );
	hotelService.Run();
}

function openMap(urlParams)
{
  win_width=780;
  win_height=580;
  pos_left=Math.round((screen.width-win_width)/2);
  pos_top=Math.round((screen.height-win_height)/2);
  if (urlParams != '') {
      urlParams = '?' + urlParams;
  }
  window.open( "http://map.pis.cz/map.php"+urlParams
  	, "pis_map"
	, "fullscreen=no,width="+win_width+",height="+win_height+",left="+pos_left+",top="+pos_top+",status=yes,menubar=no,scrollbars=no,resizable=no" );
  return false;
}
//	cityPartService.SetOnStart( function() { initWaitStatus( "cityPart" ); } );
//	cityPartService.SetOnComplete( function() { stopWaitStatus( "cityPart" ); checkErrorMessage( 'street' ); checkErrorMessage( 'number' ); } );
//	cityPartService.SetTimeOut( 4000, function() { stopWaitStatus( "cityPart" ); cleanWaitStatus( "cityPart" ); } );
